diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-14 16:00:10 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-03-14 16:00:28 -0400 |
commit | 0c21db396d0ca18db4326c53fe69137a69e3f4cb (patch) | |
tree | 415f5b14c121ff34325f5130a989a7725a1597ca | |
parent | d1dfcd1246f8e5e9f98395ae56a51ca026dad294 (diff) | |
download | stasis-0c21db396d0ca18db4326c53fe69137a69e3f4cb.tar.gz |
We're executing the test, so tell the user
-rw-r--r-- | src/deliverable.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/deliverable.c b/src/deliverable.c index 65bb0ee..0ddf17a 100644 --- a/src/deliverable.c +++ b/src/deliverable.c @@ -1359,7 +1359,7 @@ void delivery_tests_run(struct Delivery *ctx) { // skip unused test records continue; } - msg(OMC_MSG_L2, "%s %s\n", ctx->tests[i].name, ctx->tests[i].version); + msg(OMC_MSG_L2, "Executing tests for %s %s\n", ctx->tests[i].name, ctx->tests[i].version); if (!ctx->tests[i].script || !strlen(ctx->tests[i].script)) { msg(OMC_MSG_WARN | OMC_MSG_L3, "Nothing to do. To fix, declare a 'script' in section: [test:%s]\n", ctx->tests[i].name); @@ -1389,6 +1389,7 @@ void delivery_tests_run(struct Delivery *ctx) { #if 1 int status; char cmd[PATH_MAX]; + msg(OMC_MSG_L3, "Testing %s\n", ctx->tests[i].name); memset(&proc, 0, sizeof(proc)); |