]> git.saurik.com Git - redis.git/blobdiff - tests/test_helper.tcl
Fixed typo in redis.conf related to slow log parameters
[redis.git] / tests / test_helper.tcl
index aef2311c9f0cf9749376bd1ba8fdc310fe7624bd..cf55eba0812f4ae28fd14d58f7c2cb17ac23bc60 100644 (file)
@@ -13,7 +13,7 @@ set ::host 127.0.0.1
 set ::port 16379
 set ::traceleaks 0
 set ::valgrind 0
-set ::verbose 1
+set ::verbose 0
 set ::denytags {}
 set ::allowtags {}
 set ::external 0; # If "1" this means, we are running against external instance
@@ -111,6 +111,13 @@ proc cleanup {} {
 
 proc execute_everything {} {
     if 0 {
+        # Use this when hacking on new tests.
+        set ::verbose 1
+        execute_tests "unit/first"
+        return
+    }
+
+    execute_tests "unit/printver"
     execute_tests "unit/auth"
     execute_tests "unit/protocol"
     execute_tests "unit/basic"
@@ -125,24 +132,8 @@ proc execute_everything {} {
     execute_tests "unit/quit"
     execute_tests "integration/replication"
     execute_tests "integration/aof"
-#    execute_tests "integration/redis-cli"
     execute_tests "unit/pubsub"
-    }
-
-    # run tests with diskstore enabled
-    set ::diskstore 1
-    lappend ::denytags nodiskstore
-    set ::global_overrides {diskstore-enabled yes}
-    execute_tests "unit/protocol"
-    execute_tests "unit/basic"
-    execute_tests "unit/type/list"
-    execute_tests "unit/type/set"
-    execute_tests "unit/type/zset"
-    execute_tests "unit/type/hash"
-    execute_tests "unit/sort"
-    execute_tests "unit/expire"
-    execute_tests "unit/other"
-    execute_tests "unit/cas"
+    execute_tests "unit/slowlog"
 }
 
 proc main {} {