Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill tesh2 out of the source tree
[simgrid.git] / tools / tesh2 / examples / set-return.tesh
diff --git a/tools/tesh2/examples/set-return.tesh b/tools/tesh2/examples/set-return.tesh
deleted file mode 100644 (file)
index d3b1600..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#! ./tesh
-# This suite builds and uses a program returning 1.
-# tesh is instructed of this return code and must not whine.
-
-$ rm -rf temp_testdir
-$ mkdir temp_testdir
-
-$ cd temp_testdir
-< #include <stdlib.h>
-< int main(void) {
-<   exit(1);
-< }
-$ cat > return1.c
-
-$ gcc -o return1 return1.c
-
-! expect return 1
-$ ./return1
-$ cd ..
-$ rm -rf temp_testdir