diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2019-03-07 09:53:03 +0000 |
---|---|---|
committer | MartinNowack <martin.nowack@gmail.com> | 2019-03-07 12:02:13 +0000 |
commit | 77c1bfbb3b4d88dfcf92b77791fe170899d84b85 (patch) | |
tree | 43035866b8a18011f7d40889c6781d61fc09cd30 /test/CXX | |
parent | d8f820dc2521064f68c124621f30e4e0fdd0bcc0 (diff) | |
download | klee-77c1bfbb3b4d88dfcf92b77791fe170899d84b85.tar.gz |
Renamed %llvmgcc and %llvmgxx to %clang and %clangxx respectively.
Diffstat (limited to 'test/CXX')
-rw-r--r-- | test/CXX/ArrayNew.cpp | 2 | ||||
-rw-r--r-- | test/CXX/LandingPad.cpp | 2 | ||||
-rw-r--r-- | test/CXX/New.cpp | 2 | ||||
-rw-r--r-- | test/CXX/SimpleVirtual.cpp | 2 | ||||
-rw-r--r-- | test/CXX/StaticConstructor.cpp | 2 | ||||
-rw-r--r-- | test/CXX/StaticDestructor.cpp | 2 | ||||
-rw-r--r-- | test/CXX/Trivial.cpp | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/test/CXX/ArrayNew.cpp b/test/CXX/ArrayNew.cpp index 35a4f134..da89f812 100644 --- a/test/CXX/ArrayNew.cpp +++ b/test/CXX/ArrayNew.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx %s -emit-llvm %O0opt -c -o %t1.bc +// RUN: %xxclang %s -emit-llvm %O0opt -c -o %t1.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --no-output --exit-on-error --external-calls=none %t1.bc diff --git a/test/CXX/LandingPad.cpp b/test/CXX/LandingPad.cpp index 1b0c0f30..3abdfb0f 100644 --- a/test/CXX/LandingPad.cpp +++ b/test/CXX/LandingPad.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx %s -emit-llvm -c -o %t1.bc +// RUN: %xxclang %s -emit-llvm -c -o %t1.bc // RUN: rm -rf %t.klee-out // RUN: klee --output-dir=%t.klee-out %t1.bc 2>&1 | FileCheck %s diff --git a/test/CXX/New.cpp b/test/CXX/New.cpp index 921316a7..edde0f0d 100644 --- a/test/CXX/New.cpp +++ b/test/CXX/New.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx %s -emit-llvm %O0opt -c -o %t1.bc +// RUN: %xxclang %s -emit-llvm %O0opt -c -o %t1.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --no-output --exit-on-error --external-calls=none %t1.bc diff --git a/test/CXX/SimpleVirtual.cpp b/test/CXX/SimpleVirtual.cpp index 372b44de..588367e9 100644 --- a/test/CXX/SimpleVirtual.cpp +++ b/test/CXX/SimpleVirtual.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx %s -emit-llvm %O0opt -c -o %t1.bc +// RUN: %xxclang %s -emit-llvm %O0opt -c -o %t1.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --no-output --exit-on-error --external-calls=none %t1.bc diff --git a/test/CXX/StaticConstructor.cpp b/test/CXX/StaticConstructor.cpp index 3c61aec4..23a13eb5 100644 --- a/test/CXX/StaticConstructor.cpp +++ b/test/CXX/StaticConstructor.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx %s -emit-llvm %O0opt -c -o %t1.bc +// RUN: %xxclang %s -emit-llvm %O0opt -c -o %t1.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --libc=klee --no-output --exit-on-error %t1.bc diff --git a/test/CXX/StaticDestructor.cpp b/test/CXX/StaticDestructor.cpp index 15520fc4..4ea857c1 100644 --- a/test/CXX/StaticDestructor.cpp +++ b/test/CXX/StaticDestructor.cpp @@ -1,6 +1,6 @@ // don't optimize this, llvm likes to turn the *p into unreachable -// RUN: %llvmgxx %s -emit-llvm -g %O0opt -c -o %t1.bc +// RUN: %xxclang %s -emit-llvm -g %O0opt -c -o %t1.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --optimize=false --libc=klee --no-output %t1.bc 2> %t1.log // RUN: FileCheck --input-file %t1.log %s diff --git a/test/CXX/Trivial.cpp b/test/CXX/Trivial.cpp index 18845820..b2f5a480 100644 --- a/test/CXX/Trivial.cpp +++ b/test/CXX/Trivial.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgxx %s -emit-llvm %O0opt -c -o %t1.bc +// RUN: %xxclang %s -emit-llvm %O0opt -c -o %t1.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --no-output --exit-on-error %t1.bc |