diff options
author | Martin Nowack <m.nowack@imperial.ac.uk> | 2023-10-12 10:32:32 +0100 |
---|---|---|
committer | Cristian Cadar <c.cadar@imperial.ac.uk> | 2024-02-08 13:17:19 +0000 |
commit | ef4b8d817181f42d99a2c9664367d60fc3a74c05 (patch) | |
tree | 96567bb3105c054678999ab0ebd64fc7743c3882 /test/CXX/symex/libc++/exception.cpp | |
parent | f27b748ba2be259177aa672e4d5fc39d36479c7f (diff) | |
download | klee-ef4b8d817181f42d99a2c9664367d60fc3a74c05.tar.gz |
Replace `%libcxx_include` with `%libcxx_includes` for multi-include directories
To support multiple include directories for c++ header files, use `%libcxx_includes`. This string contains the `-I` compiler directive for each include path as well. Update test cases to use new directive.
Diffstat (limited to 'test/CXX/symex/libc++/exception.cpp')
-rw-r--r-- | test/CXX/symex/libc++/exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CXX/symex/libc++/exception.cpp b/test/CXX/symex/libc++/exception.cpp index 4d6805f6..c36db2d9 100644 --- a/test/CXX/symex/libc++/exception.cpp +++ b/test/CXX/symex/libc++/exception.cpp @@ -2,7 +2,7 @@ // Disabling msan because it times out on CI // REQUIRES: libcxx // REQUIRES: eh-cxx -// RUN: %clangxx %s -emit-llvm %O0opt -c -std=c++11 -I "%libcxx_include" -g -nostdinc++ -o %t1.bc +// RUN: %clangxx %s -emit-llvm %O0opt -c -std=c++11 %libcxx_includes -g -nostdinc++ -o %t1.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out --libc=uclibc --libcxx %t1.bc 2>&1 | FileCheck %s |