]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Nuke this useless bunch of tests.
authorJulian Seward <jseward@acm.org>
Thu, 18 Nov 2004 15:38:37 +0000 (15:38 +0000)
committerJulian Seward <jseward@acm.org>
Thu, 18 Nov 2004 15:38:37 +0000 (15:38 +0000)
git-svn-id: svn://svn.valgrind.org/vex/trunk@566

VEX/tests/test1.c [deleted file]
VEX/tests/test2a.c [deleted file]
VEX/tests/test2b.c [deleted file]
VEX/tests/test3.c [deleted file]

diff --git a/VEX/tests/test1.c b/VEX/tests/test1.c
deleted file mode 100644 (file)
index cc5d764..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-
-#include <stdio.h>
-
-int main ( int argc, char** argv )
-{
-  printf("testing, testing\n");
-  return 0;
-}
diff --git a/VEX/tests/test2a.c b/VEX/tests/test2a.c
deleted file mode 100644 (file)
index 4027c3c..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-
-#include <stdio.h>
-
-extern void test_printer ( int );
-
-int main ( int argc, char** argv )
-{
-  int i;
-  printf("begin ...\n");
-  for (i = 0; i < 4; i++)
-    test_printer(i);
-  printf("end.\n");
-  return 0;
-}
diff --git a/VEX/tests/test2b.c b/VEX/tests/test2b.c
deleted file mode 100644 (file)
index bdbb8a5..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-
-#include <stdio.h>
-
-void test_printer ( int x )
-{
-  printf("test_printer: %d\n", x );
-}
diff --git a/VEX/tests/test3.c b/VEX/tests/test3.c
deleted file mode 100644 (file)
index 9fb0feb..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-
-void bar ( void );
-
-int main ( int argc, char** argv )
-{
-  int i;
-  for (i = 0; i < argc; i++) 
-    bar();
-  return 0;
-}
-
-void bar ( void ) { }