From 9559a1e7883feddab4b0dc864244eab692b4c36d Mon Sep 17 00:00:00 2001 From: Snaipe Date: Mon, 23 Mar 2015 01:01:49 +0100 Subject: [PATCH] Added missing environment variables --- src/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.c b/src/main.c index 50d8571..1f489fb 100644 --- a/src/main.c +++ b/src/main.c @@ -121,7 +121,10 @@ int main(int argc, char *argv[]) { criterion_options = (struct criterion_options) { .always_succeed = !strcmp("1", getenv("CRITERION_ALWAYS_SUCCEED") ?: "0"), .no_early_exit = !strcmp("1", getenv("CRITERION_NO_EARLY_EXIT") ?: "0"), + .fail_fast = !strcmp("1", getenv("CRITERION_FAIL_FAST") ?: "0"), + .use_ascii = !strcmp("1", getenv("CRITERION_USE_ASCII") ?: "0"), .logging_threshold = atoi(getenv("CRITERION_VERBOSITY_LEVEL") ?: "2"), + .pattern = getenv("CRITERION_TEST_PATTERN"), .output_provider = NORMAL_LOGGING, };