diff options
author | Minijackson <minijackson@riseup.net> | 2018-08-10 09:26:59 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2018-08-10 09:26:59 +0200 |
commit | 2453bf7bb9da6ad9d67c3c41ea3fc272de4d601d (patch) | |
tree | 1da6b26a61fd46bdd7b7153d54cb61eea25ad224 /default.nix | |
parent | 97bf296d711d853f6d9050a08608869572b5678f (diff) | |
download | nix_repo-2453bf7bb9da6ad9d67c3c41ea3fc272de4d601d.tar.gz nix_repo-2453bf7bb9da6ad9d67c3c41ea3fc272de4d601d.zip |
Construct plugin directory for sinkTest
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 41 |
1 files changed, 22 insertions, 19 deletions
diff --git a/default.nix b/default.nix index 7a40fcf..5ddc23a 100644 --- a/default.nix +++ b/default.nix | |||
@@ -98,26 +98,29 @@ in rec { | |||
98 | doCheck = true; | 98 | doCheck = true; |
99 | # Only tests that does not involve external resources | 99 | # Only tests that does not involve external resources |
100 | checkPhase = '' | 100 | checkPhase = '' |
101 | export LD_LIBRARY_PATH=$PWD/tests:$PWD/examples/caldavresource/:$PWD/examples/dummyresource/:$PWD/tests/hawd:$PWD/common QT_PLUGIN_PATH=$QT_PLUGIN_PATH:$PWD/../build-plugins/ PATH=$PATH:$PWD/synchronizer/ | 101 | mkdir -p plugins/sink/resources |
102 | ln -s examples/*resource/libsink_resource*.so plugins/sink/resources/ | ||
103 | export LD_LIBRARY_PATH=$PWD/tests:$PWD/examples/caldavresource/:$PWD/examples/dummyresource/:$PWD/tests/hawd:$PWD/common QT_PLUGIN_PATH=$QT_PLUGIN_PATH:$PWD/plugins/ PATH=$PATH:$PWD/synchronizer/ | ||
104 | ./tests/clientapitest && | ||
102 | ./tests/resourceconfigtest && | 105 | ./tests/resourceconfigtest && |
103 | ./tests/storagetest && | 106 | ./tests/storagetest && |
104 | ./tests/domainadaptortest && | 107 | ./tests/domainadaptortest && |
105 | ./tests/messagequeuetest && | 108 | ./tests/messagequeuetest && |
106 | ./tests/indextest && | 109 | ./tests/indextest && |
107 | ./tests/resourcecommunicationtest && | 110 | ./tests/resourcecommunicationtest && |
108 | ./tests/pipelinetest && | 111 | ./tests/pipelinetest && |
109 | ./tests/querytest && | 112 | ./tests/querytest && |
110 | ./tests/modelinteractivitytest && | 113 | ./tests/modelinteractivitytest && |
111 | ./tests/inspectiontest && | 114 | ./tests/inspectiontest && |
112 | ./tests/accountstest && | 115 | ./tests/accountstest && |
113 | ./tests/testaccounttest && | 116 | ./tests/testaccounttest && |
114 | ./tests/dummyresourcemailtest && | 117 | ./tests/dummyresourcemailtest && |
115 | ./tests/interresourcemovetest && | 118 | ./tests/interresourcemovetest && |
116 | ./tests/notificationtest && | 119 | ./tests/notificationtest && |
117 | ./tests/entitystoretest && | 120 | ./tests/entitystoretest && |
118 | ./tests/upgradetest && | 121 | ./tests/upgradetest && |
119 | ./tests/resourcecontroltest && | 122 | ./tests/resourcecontroltest && |
120 | ./tests/dummyresourcetest | 123 | ./tests/dummyresourcetest |
121 | ''; | 124 | ''; |
122 | }); | 125 | }); |
123 | 126 | ||