diff options
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/default.nix b/default.nix index eb758cf..64c5c8a 100644 --- a/default.nix +++ b/default.nix | |||
@@ -97,7 +97,9 @@ in rec { | |||
97 | 97 | ||
98 | postInstall = '' | 98 | postInstall = '' |
99 | mkdir -p $out/tests | 99 | mkdir -p $out/tests |
100 | mkdir -p $out/bin | ||
100 | cp ./tests/clientapitest ./tests/resourceconfigtest ./tests/storagetest ./tests/domainadaptortest ./tests/messagequeuetest ./tests/indextest ./tests/resourcecommunicationtest ./tests/pipelinetest ./tests/querytest ./tests/modelinteractivitytest ./tests/inspectiontest ./tests/accountstest ./tests/testaccounttest ./tests/dummyresourcemailtest ./tests/interresourcemovetest ./tests/notificationtest ./tests/entitystoretest ./tests/upgradetest ./tests/resourcecontroltest ./tests/dummyresourcetest $out/tests | 101 | cp ./tests/clientapitest ./tests/resourceconfigtest ./tests/storagetest ./tests/domainadaptortest ./tests/messagequeuetest ./tests/indextest ./tests/resourcecommunicationtest ./tests/pipelinetest ./tests/querytest ./tests/modelinteractivitytest ./tests/inspectiontest ./tests/accountstest ./tests/testaccounttest ./tests/dummyresourcemailtest ./tests/interresourcemovetest ./tests/notificationtest ./tests/entitystoretest ./tests/upgradetest ./tests/resourcecontroltest ./tests/dummyresourcetest $out/tests |
102 | cp ./sinksh/sinksh $out/bin | ||
101 | cp ./tests/libsink_test.so $out/lib | 103 | cp ./tests/libsink_test.so $out/lib |
102 | ''; | 104 | ''; |
103 | 105 | ||
@@ -109,7 +111,8 @@ in rec { | |||
109 | { | 111 | { |
110 | buildInputs = [ sink pkgs.qt5.qtbase pkgs.xvfb_run ]; | 112 | buildInputs = [ sink pkgs.qt5.qtbase pkgs.xvfb_run ]; |
111 | realTests = pkgs.writeScript "sinkRealTests" '' | 113 | realTests = pkgs.writeScript "sinkRealTests" '' |
112 | clientapitest && | 114 | sinksh selftest && |
115 | clientapitest && | ||
113 | resourceconfigtest && | 116 | resourceconfigtest && |
114 | storagetest && | 117 | storagetest && |
115 | domainadaptortest && | 118 | domainadaptortest && |