summaryrefslogtreecommitdiff
path: root/integrationtests-old/dcat_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-07-01 16:46:35 +0300
committerPaul Buetow <paul@buetow.org>2025-07-01 16:46:35 +0300
commitde974de3d8f4ed38ff7fac6447fdcfec2c00cfc1 (patch)
tree4b52d669bb79593a745712b3aa21b572bfbe458c /integrationtests-old/dcat_test.go
parent35c3ce0bbf631c29f54cf21d651bd7664badea14 (diff)
dont run old tests by default
Diffstat (limited to 'integrationtests-old/dcat_test.go')
-rw-r--r--integrationtests-old/dcat_test.go10
1 files changed, 5 insertions, 5 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
}