Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Damn autogenerated, get out of the way, I can't see the real changes I've made
[simgrid.git] / tools / tesh / catch-signal.tesh
1 #! ./tesh
2 # This suite builds and uses a program raising a segfault, ie a program dying
3 # of SIGSEV. tesh must detect this condition and report the issue.
4
5 $ rm -rf temp_testdir
6 $ mkdir temp_testdir
7
8 $ cd temp_testdir
9 < #include <stdlib.h>
10 < int main(void) {
11 <   char *A=NULL;
12 <   *A = 1;
13 < }
14 $ cat > segfault.c
15
16 $ gcc -o segfault segfault.c
17
18 ! expect return 15
19 < $ ./segfault
20 $ ../tesh --log='log.thresh:info tesh.fmt:%m%n'
21 > Test suite from stdin
22 > [stdin:1] ./segfault
23 > Test suite `(stdin)': NOK (<stdin:1> got signal SIGSEGV)
24 > Output of <stdin:1> so far: 
25 > ||
26
27 $ cd ..
28 $ rm -rf temp_testdir