about summary refs log tree commit diff homepage
path: root/test/Feature/Alias.c
diff options
context:
space:
mode:
authorAndrea Mattavelli <andreamattavelli@gmail.com>2017-03-06 11:12:41 +0000
committerDan Liew <delcypher@gmail.com>2017-03-15 18:52:07 +0000
commit8b5188e4237aa172a9c2b3e3efca9fe7a091cf70 (patch)
treece315907eee30bbdb3f44b9f3e18dc18662dc810 /test/Feature/Alias.c
parentf58a88d204202f5cea366bba63fb982a03c65149 (diff)
downloadklee-8b5188e4237aa172a9c2b3e3efca9fe7a091cf70.tar.gz
Fix test case for OSX: only weak aliases are supported on darwin
Rewritten tests by replacing 'XFAIL: darwin' with 'REQUIRES: not-darwin'
Diffstat (limited to 'test/Feature/Alias.c')
-rw-r--r--test/Feature/Alias.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/Feature/Alias.c b/test/Feature/Alias.c
index 381bcc2a..09abb3e0 100644
--- a/test/Feature/Alias.c
+++ b/test/Feature/Alias.c
@@ -1,10 +1,9 @@
+// Darwin does not have strong aliases.
+// REQUIRES: not-darwin
 // RUN: %llvmgcc %s -emit-llvm -g -c -o %t1.bc
 // RUN: rm -rf %t.klee-out
 // RUN: %klee --output-dir=%t.klee-out --exit-on-error %t1.bc
 
-// Darwin does not have strong aliases.
-// XFAIL: darwin
-
 #include <assert.h>
 
 // alias for global
@@ -17,10 +16,10 @@ extern int foo() __attribute__((alias("__foo")));
 
 int *c = &a;
 
-int main() { 
+int main() {
   assert(a == 52);
   assert(foo() == 52);
   assert(*c == 52);
-  
+
   return 0;
 }