forked from OSchip/llvm-project
10 lines
425 B
Plaintext
10 lines
425 B
Plaintext
# Run EquivalenceATest against itself with a small timeout
|
|
# to stress the signal handling and ensure that shmem doesn't mind
|
|
# the signals.
|
|
|
|
RUN: %cpp_compiler %S/EquivalenceATest.cpp -o %t-EquivalenceATest
|
|
RUN: %t-EquivalenceATest -timeout=1 -run_equivalence_server=EQUIV_SIG_TEST & export APID=$!
|
|
RUN: sleep 3
|
|
RUN: %t-EquivalenceATest -timeout=1 -use_equivalence_server=EQUIV_SIG_TEST -runs=500000 2>&1
|
|
RUN: kill -9 $APID
|