diff options
author | 2008-03-04 12:56:18 +0000 | |
---|---|---|
committer | 2008-03-04 12:56:18 +0000 | |
commit | 49ba4694749d956f5a3380c3871055cdefc15932 (patch) | |
tree | 84211b336c8336912ec10acbd2114c1d420851ef /paludis/repositories | |
parent | 53af984ffe39e834325c90c44b341d38698a1c3c (diff) | |
download | paludis-49ba4694749d956f5a3380c3871055cdefc15932.tar.gz paludis-49ba4694749d956f5a3380c3871055cdefc15932.tar.xz |
Up timeouts, avoid repeats for big slow tests
Diffstat (limited to 'paludis/repositories')
-rw-r--r-- | paludis/repositories/e/e_repository_TEST.cc | 34 |
1 files changed, 27 insertions, 7 deletions
diff --git a/paludis/repositories/e/e_repository_TEST.cc b/paludis/repositories/e/e_repository_TEST.cc index 6dd0f8a6a..8b0aaaab6 100644 --- a/paludis/repositories/e/e_repository_TEST.cc +++ b/paludis/repositories/e/e_repository_TEST.cc @@ -497,7 +497,7 @@ namespace test_cases unsigned max_run_time() const { - return 300; + return 3000; } void run() @@ -564,7 +564,7 @@ namespace test_cases unsigned max_run_time() const { - return 300; + return 3000; } void run() @@ -628,7 +628,7 @@ namespace test_cases unsigned max_run_time() const { - return 300; + return 3000; } void run() @@ -895,7 +895,12 @@ namespace test_cases unsigned max_run_time() const { - return 300; + return 3000; + } + + bool repeatable() const + { + return false; } void run() @@ -1040,7 +1045,12 @@ namespace test_cases unsigned max_run_time() const { - return 300; + return 3000; + } + + bool repeatable() const + { + return false; } void run() @@ -1176,7 +1186,12 @@ namespace test_cases unsigned max_run_time() const { - return 300; + return 3000; + } + + bool repeatable() const + { + return false; } void run() @@ -1224,7 +1239,12 @@ namespace test_cases unsigned max_run_time() const { - return 300; + return 3000; + } + + bool repeatable() const + { + return false; } void run() |