From 22dffe146842b351ed996132e25c1e4cd8555b77 Mon Sep 17 00:00:00 2001 From: WebFreak001 Date: Thu, 17 Aug 2017 19:33:00 +0200 Subject: [PATCH] Remove test from server split --- tests/tc057/expected1.txt | 2 -- tests/tc057/file.d | 8 -------- tests/tc057/run.sh | 5 ----- 3 files changed, 15 deletions(-) delete mode 100644 tests/tc057/expected1.txt delete mode 100644 tests/tc057/file.d delete mode 100755 tests/tc057/run.sh diff --git a/tests/tc057/expected1.txt b/tests/tc057/expected1.txt deleted file mode 100644 index 8bc98d2..0000000 --- a/tests/tc057/expected1.txt +++ /dev/null @@ -1,2 +0,0 @@ -calltips -void doStuff(int a, int b) diff --git a/tests/tc057/file.d b/tests/tc057/file.d deleted file mode 100644 index 80072ce..0000000 --- a/tests/tc057/file.d +++ /dev/null @@ -1,8 +0,0 @@ -void doStuff(int a, int b) { return; } -int getInt(int i, int[] b) { return i; } -int b(int a) { return a; } -void main(string[] args) -{ - doStuff(getInt(1, [b(3)]),); - auto x = 10, 20; -} diff --git a/tests/tc057/run.sh b/tests/tc057/run.sh deleted file mode 100755 index 3376eea..0000000 --- a/tests/tc057/run.sh +++ /dev/null @@ -1,5 +0,0 @@ -set -e -set -u - -../../bin/dcd-client $1 file.d -c161 > actual1.txt -diff actual1.txt expected1.txt