]> 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 bce8ded596d7fc8cc80797df1f33f55c55ca0c4c..cf55eba0812f4ae28fd14d58f7c2cb17ac23bc60 100644 (file)
@@ -110,7 +110,7 @@ proc cleanup {} {
 }
 
 proc execute_everything {} {
-    if 1 {
+    if 0 {
         # Use this when hacking on new tests.
         set ::verbose 1
         execute_tests "unit/first"
@@ -132,25 +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"
-
-    return; # No diskstore tests for now...
-    # run tests with diskstore enabled
-    puts "\nRunning diskstore tests... this is slow, press Ctrl+C if not interested.."
-    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 {} {