From e3116217de579bcbca3e108516ae9594d22d6c6a Mon Sep 17 00:00:00 2001 From: Dennis Felsing Date: Thu, 26 May 2022 01:34:18 +0200 Subject: [PATCH] test -> integration_test --- .gitignore | 2 +- {test => integration_test}/README.md | 0 {test => integration_test}/maps/coverage.map | Bin scripts/integration_test.sh | 6 +++--- 4 files changed, 4 insertions(+), 4 deletions(-) rename {test => integration_test}/README.md (100%) rename {test => integration_test}/maps/coverage.map (100%) diff --git a/.gitignore b/.gitignore index 980f3c96a..22bff0cc3 100644 --- a/.gitignore +++ b/.gitignore @@ -78,7 +78,7 @@ generated target /build* -/test/* +/integration_test/* # IDE project files .cache diff --git a/test/README.md b/integration_test/README.md similarity index 100% rename from test/README.md rename to integration_test/README.md diff --git a/test/maps/coverage.map b/integration_test/maps/coverage.map similarity index 100% rename from test/maps/coverage.map rename to integration_test/maps/coverage.map diff --git a/scripts/integration_test.sh b/scripts/integration_test.sh index b9ef6a79f..a8d570d6b 100755 --- a/scripts/integration_test.sh +++ b/scripts/integration_test.sh @@ -53,10 +53,10 @@ then exit 1 fi -mkdir -p test -cp "$arg_build_dir"/DDNet* test +mkdir -p integration_test +cp "$arg_build_dir"/DDNet* integration_test -cd test || exit 1 +cd integration_test || exit 1 function kill_all() { if [ "$arg_verbose" == "1" ]