From c2dec441f3f89916962175f0307b5c33473fa616 Mon Sep 17 00:00:00 2001 From: Cristian Cadar Date: Fri, 16 May 2014 19:31:29 +0100 Subject: Changed StaticDestructor.cpp to use uclibc and disable optimizations explicitly. --- test/CXX/StaticDestructor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CXX/StaticDestructor.cpp b/test/CXX/StaticDestructor.cpp index 68fb122e..60390c2d 100644 --- a/test/CXX/StaticDestructor.cpp +++ b/test/CXX/StaticDestructor.cpp @@ -1,7 +1,7 @@ // don't optimize this, llvm likes to turn the *p into unreachable // RUN: %llvmgxx %s -emit-llvm -g -O0 -c -o %t1.bc -// RUN: %klee --libc=klee --no-output %t1.bc 2> %t1.log +// RUN: %klee --optimize=false --libc=uclibc --no-output %t1.bc 2> %t1.log // RUN: grep ":16: memory error" %t1.log #include @@ -19,6 +19,6 @@ public: Test t; -int main() { +int main(int argc, char** argv) { return 0; } -- cgit 1.4.1