aboutsummaryrefslogtreecommitdiffstats
path: root/testing/peek/fix-parallel-build.patch
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-01-29 00:06:56 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-01-29 00:06:56 +0100
commitc10f2d9b183c51fddfcb61024d01a5bd21197694 (patch)
treebe05642071d1d25f7bd6a17684a76bd9bdfde63c /testing/peek/fix-parallel-build.patch
parent47d62840a0a17ab1d9abf62acd4542370fe5b7ad (diff)
downloadaports-c10f2d9b183c51fddfcb61024d01a5bd21197694.tar.bz2
aports-c10f2d9b183c51fddfcb61024d01a5bd21197694.tar.xz
Remove stale patches from testing
Diffstat (limited to 'testing/peek/fix-parallel-build.patch')
-rw-r--r--testing/peek/fix-parallel-build.patch53
1 files changed, 0 insertions, 53 deletions
diff --git a/testing/peek/fix-parallel-build.patch b/testing/peek/fix-parallel-build.patch
deleted file mode 100644
index 727eb4cf1e..0000000000
--- a/testing/peek/fix-parallel-build.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From: Boyuan Yang <073plan@gmail.com>
-Date: Wed, 13 Jun 2018 18:07:42 +0800
-Subject: tests: Force build tests after main executable target
-
----
- tests/CMakeLists.txt | 16 ++++++++++++++++
- 1 file changed, 16 insertions(+)
-
-diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
-index 23a4db3..087d0ca 100644
---- a/tests/CMakeLists.txt
-+++ b/tests/CMakeLists.txt
-@@ -17,6 +17,10 @@ add_test(
- test-desktop-integration
- ${PROJECT_NAME}-test-desktop-integration)
-
-+add_dependencies(
-+ ${PROJECT_NAME}-test-desktop-integration
-+ ${PROJECT_NAME})
-+
- # /utils/
- vala_precompile(VALA_TEST_UTILS_C
- test-utils.vala
-@@ -34,6 +38,10 @@ add_test(
- test-utils
- ${PROJECT_NAME}-test-utils)
-
-+add_dependencies(
-+ ${PROJECT_NAME}-test-utils
-+ ${PROJECT_NAME})
-+
- # /screen-recorder/recording-area/
- vala_precompile(VALA_TEST_RECORDING_AREA_C
- screen-recorder/test-recording-area.vala
-@@ -50,6 +58,10 @@ add_test(
- screen-recorder-test-recording-area
- ${PROJECT_NAME}-screen-recorder-test-recording-area)
-
-+add_dependencies(
-+ ${PROJECT_NAME}-screen-recorder-test-recording-area
-+ ${PROJECT_NAME})
-+
- # /screen-recorder/cli-screen-recorder/
- vala_precompile(VALA_TEST_COMMAND_LINE_SCREEN_RECORDER_C
- screen-recorder/test-cli-screen-recorder.vala
-@@ -79,3 +91,7 @@ add_executable(
- add_test(
- test-screen-recorder-cli-screen-recorder
- ${PROJECT_NAME}-test-screen-recorder-cli-screen-recorder)
-+
-+add_dependencies(
-+ ${PROJECT_NAME}-test-screen-recorder-cli-screen-recorder
-+ ${PROJECT_NAME})