about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
-rw-r--r--test/Runtime/klee-libc/atexit_order.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/Runtime/klee-libc/atexit_order.c b/test/Runtime/klee-libc/atexit_order.c
new file mode 100644
index 00000000..f8ebb160
--- /dev/null
+++ b/test/Runtime/klee-libc/atexit_order.c
@@ -0,0 +1,27 @@
+// RUN: %clang %s -emit-llvm %O0opt -c -o %t1.bc
+// RUN: rm -rf %t.klee-out
+// RUN: %klee --output-dir=%t.klee-out --exit-on-error --libc=klee %t1.bc
+
+// make sure the functions passed to atexit are called in reverse order
+
+#include <assert.h>
+
+extern void atexit(void (*)());
+
+static int counter = 0;
+
+void first() {
+  assert(counter == 0);
+  ++counter;
+}
+
+void second() {
+  assert(counter == 1);
+  ++counter;
+}
+
+int main() {
+  atexit(second);
+  atexit(first);
+  return 0;
+}