diff options
author | Cristian Cadar <c.cadar@imperial.ac.uk> | 2022-03-25 22:29:36 +0000 |
---|---|---|
committer | MartinNowack <2443641+MartinNowack@users.noreply.github.com> | 2022-05-06 11:21:35 +0100 |
commit | fa5367b92e379886eda68d8c754d1abcf1c5aa66 (patch) | |
tree | 0b749e1ce3b8c6915cc9316ab22df5a239236b26 /test/Replay/klee-replay | |
parent | d704b59fa0082d1783dd4c921d87cddad6620d78 (diff) | |
download | klee-fa5367b92e379886eda68d8c754d1abcf1c5aa66.tar.gz |
Updated tests to use ktest-randgen instead of gen-random-bout
Diffstat (limited to 'test/Replay/klee-replay')
-rw-r--r-- | test/Replay/klee-replay/KTestRandGen.c (renamed from test/Replay/klee-replay/GenRandomBout.c) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Replay/klee-replay/GenRandomBout.c b/test/Replay/klee-replay/KTestRandGen.c index 9f609a40..fdb8c15a 100644 --- a/test/Replay/klee-replay/GenRandomBout.c +++ b/test/Replay/klee-replay/KTestRandGen.c @@ -1,25 +1,25 @@ // -- Core testing commands // RUN: rm -f %t.bout -// RUN: %gen-random-bout 100 -sym-arg 4 -sym-files 2 20 -sym-arg 5 -sym-stdin 8 -sym-stdout -sym-arg 6 -sym-args 1 4 5 -bout-file %t.bout +// RUN: %ktest-randgen 100 -sym-arg 4 -sym-files 2 20 -sym-arg 5 -sym-stdin 8 -sym-stdout -sym-arg 6 -sym-args 1 4 5 -bout-file %t.bout // RUN: %cc %s -O0 -o %t // RUN: %klee-replay %t %t.bout 2> %t.out // RUN: FileCheck --input-file=%t.out %s // CHECK: KLEE-REPLAY: NOTE: EXIT STATUS: NORMAL // // -- Option error handling tests -// RUN: not %gen-random-bout 2> %t1 +// RUN: not %ktest-randgen 2> %t1 // RUN: FileCheck -check-prefix=CHECK-USAGE -input-file=%t1 %s // CHECK-USAGE: Usage // -// RUN: not %gen-random-bout 0 --unexpected-option 2> %t2 +// RUN: not %ktest-randgen 0 --unexpected-option 2> %t2 // RUN: FileCheck -check-prefix=CHECK-UNEXPECTED -input-file=%t2 %s // CHECK-UNEXPECTED: Unexpected // -// RUN: not %gen-random-bout 100 --sym-args 5 3 2> %t3 +// RUN: not %ktest-randgen 100 --sym-args 5 3 2> %t3 // RUN: FileCheck -check-prefix=CHECK-RANOUT -input-file=%t3 %s // CHECK-RANOUT: ran out of // -// RUN: not %gen-random-bout 100 --sym-args 5 3 10 2> %t4 +// RUN: not %ktest-randgen 100 --sym-args 5 3 10 2> %t4 // RUN: FileCheck -check-prefix=CHECK-NOMORE -input-file=%t4 %s // CHECK-NOMORE: should be no more |