From 5db857fd9d1db36f27f48e826cb9f49a35506db7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Mon, 5 Jul 1999 14:58:45 -0700 Subject: [PATCH] no tests for modules which can cause errors on load.. Rev: src/testsuite.in:1.182 --- src/testsuite.in | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/testsuite.in b/src/testsuite.in index 80d6c1a8b8..1a1b6fecf4 100644 --- a/src/testsuite.in +++ b/src/testsuite.in @@ -1,4 +1,4 @@ -stest_true([["$Id: testsuite.in,v 1.181 1999/07/04 12:07:43 grubba Exp $"]]) +stest_true([["$Id: testsuite.in,v 1.182 1999/07/05 21:58:45 hubbe Exp $"]]) cond([[all_constants()->_verify_internals]], [[ test_do(_verify_internals()) @@ -3399,6 +3399,15 @@ void test_dir(string dir) { foreach(get_dir(dir), string s) { + switch(s) + { + case "msql.pike": + case "mysql.pike": + case "odbc.pike": + case "oracle.pike": + case "postgres.pike": + continue; // These modules cannot be tested properly by this test + } string file=combine_path(dir,s); mixed stat=file_stat(file); if(!stat) continue; -- GitLab