Make test work with upstream cbehave (tinydir bundles a modified version) diff --git a/tests/file_open_test.c b/tests/file_open_test.c index 09b856e..92b13ca 100644 --- a/tests/file_open_test.c +++ b/tests/file_open_test.c @@ -4,6 +4,11 @@ #include "cbehave.h" #include "util.h" +#define ASSERT(cond, ret) \ +if (!(cond)) {\ + cbehave_feature_return(__FILE__, __LINE__, ret, _state); \ + goto _feature_over; \ +}\ FEATURE(file_open, "File open") SCENARIO("Open file in current directory") @@ -34,4 +39,7 @@ FEATURE(file_open, "File open") SCENARIO_END FEATURE_END -CBEHAVE_RUN("File open:", TEST_FEATURE(file_open)) +int main(void) { + cbehave_feature _cfeatures[] = {{feature_idx(file_open)}}; + return cbehave_runner("File open:", _cfeatures); +} n> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/hydra.gnu.org.pub
mit message (Expand)
AgeCommit message (Expand)Author
Author
2021-04-18tests: ldap: Fix it....Fixes: <https://issues.guix.gnu.org/47745>. * gnu/tests/ldap.scm (run-ldap-test): Use a password with more that 8 characters so that dscreate doesn't fail. Mathieu Othacehe