diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2022-03-25 22:00:51 +0000 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2022-05-06 11:21:35 +0100 |
commit | f94309c1fcbbd77a210e66fe9d1d26e83a948a8a (patch) | |
tree | b169b80b5703770407d1064aae9ceecede0c4325 /tools | |
parent | 3515cb00c750ec5f081d4d0e3a1c386080ccda7e (diff) | |
download | klee-f94309c1fcbbd77a210e66fe9d1d26e83a948a8a.tar.gz |
Renamed gen-bout to ktest-gen
Diffstat (limited to 'tools')
-rw-r--r-- | tools/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tools/ktest-gen/CMakeLists.txt (renamed from tools/gen-bout/CMakeLists.txt) | 8 | ||||
-rw-r--r-- | tools/ktest-gen/ktest-gen.cpp (renamed from tools/gen-bout/gen-bout.cpp) | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index a400569b..4e561c08 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -6,7 +6,7 @@ # License. See LICENSE.TXT for details. # #===------------------------------------------------------------------------===# -add_subdirectory(gen-bout) +add_subdirectory(ktest-gen) add_subdirectory(gen-random-bout) add_subdirectory(kleaver) add_subdirectory(klee) diff --git a/tools/gen-bout/CMakeLists.txt b/tools/ktest-gen/CMakeLists.txt index 07cfb3c7..084d551d 100644 --- a/tools/gen-bout/CMakeLists.txt +++ b/tools/ktest-gen/CMakeLists.txt @@ -6,12 +6,12 @@ # License. See LICENSE.TXT for details. # #===------------------------------------------------------------------------===# -add_executable(gen-bout - gen-bout.cpp +add_executable(ktest-gen + ktest-gen.cpp ) set(KLEE_LIBS kleeBasic) -target_link_libraries(gen-bout ${KLEE_LIBS}) +target_link_libraries(ktest-gen ${KLEE_LIBS}) -install(TARGETS gen-bout RUNTIME DESTINATION bin) +install(TARGETS ktest-gen RUNTIME DESTINATION bin) diff --git a/tools/gen-bout/gen-bout.cpp b/tools/ktest-gen/ktest-gen.cpp index f8fa5d4e..a9f4be7c 100644 --- a/tools/gen-bout/gen-bout.cpp +++ b/tools/ktest-gen/ktest-gen.cpp @@ -1,4 +1,4 @@ -//===-- gen-bout.cpp --------------------------------------------*- C++ -*-===// +//===-- ktest-gen.cpp -------------------------------------------*- C++ -*-===// // // The KLEE Symbolic Virtual Machine // |