From 2a9211596eafed6abd977842241f9bc369e86ef2 Mon Sep 17 00:00:00 2001 From: murphy Date: Wed, 22 Apr 2009 02:46:32 +0000 Subject: SQL scanner cleanup (issue #33). * Increased size of the test suite random samples. --- test/scanners/coderay_suite.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/scanners/coderay_suite.rb') diff --git a/test/scanners/coderay_suite.rb b/test/scanners/coderay_suite.rb index 5edf6be..dc0c1a0 100644 --- a/test/scanners/coderay_suite.rb +++ b/test/scanners/coderay_suite.rb @@ -100,15 +100,15 @@ module CodeRay if ENV['deluxe'] MAX_CODE_SIZE_TO_HIGHLIGHT = 500_000_000 MAX_CODE_SIZE_TO_TEST = 500_000_000 - DEFAULT_MAX = 1024 + DEFAULT_MAX = 4096 elsif ENV['fast'] MAX_CODE_SIZE_TO_HIGHLIGHT = 5_000_000 MAX_CODE_SIZE_TO_TEST = 1_000_000 DEFAULT_MAX = 16 else - MAX_CODE_SIZE_TO_HIGHLIGHT = 5_000_000 - MAX_CODE_SIZE_TO_TEST = 5_000_000 - DEFAULT_MAX = 512 + MAX_CODE_SIZE_TO_HIGHLIGHT = 10_000_000 + MAX_CODE_SIZE_TO_TEST = 10_000_000 + DEFAULT_MAX = 1024 end class << self -- cgit v1.2.1