summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--integrationtests-old/dcat_test.go10
-rw-r--r--integrationtests-old/dgrep_test.go8
-rw-r--r--integrationtests-old/dmap_test.go10
-rw-r--r--integrationtests-old/dserver_test.go4
-rw-r--r--integrationtests-old/dtail_test.go4
-rw-r--r--integrationtests-old/dtailhealth_test.go6
6 files changed, 21 insertions, 21 deletions
diff --git a/integrationtests-old/dcat_test.go b/integrationtests-old/dcat_test.go
index b2a041c..eaa23a8 100644
--- a/integrationtests-old/dcat_test.go
+++ b/integrationtests-old/dcat_test.go
@@ -9,7 +9,7 @@ import (
)
func TestDCat1(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -40,7 +40,7 @@ func testDCat1(t *testing.T, inFile string) error {
}
func TestDCat2(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
return
}
inFile := "dcat2.txt"
@@ -69,7 +69,7 @@ func TestDCat2(t *testing.T) {
}
func TestDCat3(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
return
}
inFile := "dcat3.txt"
@@ -78,7 +78,7 @@ func TestDCat3(t *testing.T) {
args := []string{"--plain", "--logLevel", "error", "--cfg", "none", inFile}
- // Notice, with DTAIL_INTEGRATION_TEST_RUN_MODE the DTail max line length is set
+ // Notice, with DTAIL_OLD_INTEGRATION_TEST_RUN_MODE the DTail max line length is set
// to 1024!
_, err := runCommand(context.TODO(), t, outFile, "../dcat", args...)
if err != nil {
@@ -95,7 +95,7 @@ func TestDCat3(t *testing.T) {
}
func TestDCatColors(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
return
}
diff --git a/integrationtests-old/dgrep_test.go b/integrationtests-old/dgrep_test.go
index 943f99e..c91ba70 100644
--- a/integrationtests-old/dgrep_test.go
+++ b/integrationtests-old/dgrep_test.go
@@ -9,7 +9,7 @@ import (
)
func TestDGrep1(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -38,7 +38,7 @@ func TestDGrep1(t *testing.T) {
}
func TestDGrep2(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -68,7 +68,7 @@ func TestDGrep2(t *testing.T) {
}
func TestDGrepContext1(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -98,7 +98,7 @@ func TestDGrepContext1(t *testing.T) {
}
func TestDGrepContext2(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
diff --git a/integrationtests-old/dmap_test.go b/integrationtests-old/dmap_test.go
index f772243..e4fef8b 100644
--- a/integrationtests-old/dmap_test.go
+++ b/integrationtests-old/dmap_test.go
@@ -10,7 +10,7 @@ import (
)
func TestDMap1(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -97,7 +97,7 @@ func testDmap1(t *testing.T, query, subtestName string, usePipe bool) error {
}
func TestDMap2(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -134,7 +134,7 @@ func TestDMap2(t *testing.T) {
}
func TestDMap3(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -191,7 +191,7 @@ func TestDMap3(t *testing.T) {
}
func TestDMap4Append(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -247,7 +247,7 @@ func TestDMap4Append(t *testing.T) {
}
func TestDMap5CSV(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
diff --git a/integrationtests-old/dserver_test.go b/integrationtests-old/dserver_test.go
index eaca23b..9cbbfc6 100644
--- a/integrationtests-old/dserver_test.go
+++ b/integrationtests-old/dserver_test.go
@@ -12,7 +12,7 @@ import (
)
func TestDServer1(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -60,7 +60,7 @@ func TestDServer1(t *testing.T) {
}
func TestDServer2(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
diff --git a/integrationtests-old/dtail_test.go b/integrationtests-old/dtail_test.go
index 752dafb..7eb9f5e 100644
--- a/integrationtests-old/dtail_test.go
+++ b/integrationtests-old/dtail_test.go
@@ -12,7 +12,7 @@ import (
)
func TestDTailWithServer(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -130,7 +130,7 @@ func TestDTailWithServer(t *testing.T) {
}
func TestDTailColorTable(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
diff --git a/integrationtests-old/dtailhealth_test.go b/integrationtests-old/dtailhealth_test.go
index 7946824..b6312d2 100644
--- a/integrationtests-old/dtailhealth_test.go
+++ b/integrationtests-old/dtailhealth_test.go
@@ -10,7 +10,7 @@ import (
)
func TestDTailHealth1(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -32,7 +32,7 @@ func TestDTailHealth1(t *testing.T) {
}
func TestDTailHealth2(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}
@@ -57,7 +57,7 @@ func TestDTailHealth2(t *testing.T) {
}
func TestDTailHealthCheck3(t *testing.T) {
- if !config.Env("DTAIL_INTEGRATION_TEST_RUN_MODE") {
+ if !config.Env("DTAIL_OLD_INTEGRATION_TEST_RUN_MODE") {
t.Log("Skipping")
return
}