Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill tesh2 out of the source tree
[simgrid.git] / tools / tesh2 / examples / background.tesh
diff --git a/tools/tesh2/examples/background.tesh b/tools/tesh2/examples/background.tesh
deleted file mode 100644 (file)
index e13b648..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-\r
-$ rm -rf temp_testdir\r
-$ mkdir temp_testdir\r
-$ cd temp_testdir\r
-\r
-< #include <unistd.h>\r
-< #include <stdlib.h>\r
-< #include <stdio.h>\r
-< #include <sys/types.h>\r
-< #include <sys/stat.h>\r
-< #include <fcntl.h>\r
-<                   \r
-< int main() {\r
-<   char buff[2048];\r
-<   int got;\r
-<   int in;\r
-< \r
-<   sleep(1);\r
-<   in = open("tmp_fich",O_RDONLY|O_CREAT);\r
-<   if (in == -1) {\r
-<     perror("Cannot open tmp_fich: ");\r
-<     exit(1);\r
-<   }\r
-<   while ((got = read(in,&buff,2048))>0) {\r
-<      int w = write(1,&buff,got);\r
-<      if (w<0) {\r
-<        perror("Error while writing:");\r
-<        exit(1);\r
-<      }\r
-<   }\r
-<   if (got < 0) {\r
-<     perror("Error while reading:");\r
-<     exit(1);\r
-<   }\r
-<   return 0;\r
-< }\r
-$ Cat > delayed_cat.c\r
-\r
-$ gcc -Wall -o delayed_cat delayed_cat.c\r
-\r
-& ./delayed_cat \r
-> TOTO\r
-\r
-< TOTO\r
-$ Cat > tmp_fich\r
-\r
-$ sleep 2\r
-$ cd ..\r
-$ rm -rf temp_testdir\r
-\r