diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-06-06 13:30:52 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-06-06 13:30:52 +0200 |
commit | 2d28fd9b8076c21e7a046a2f6b6ed9ef696b2315 (patch) | |
tree | c01c3093a4bb4924a0529a359ae7487725e28e0c | |
parent | efb966443f0efa3f1305679fc563fc1a7cfa07d6 (diff) | |
download | kit-2d28fd9b8076c21e7a046a2f6b6ed9ef696b2315.zip |
[build] debug
-rwxr-xr-x | build.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -550,12 +550,16 @@ i32 main(i32 argc, c8 **argv) { } fflush(stdout); + printf(" .. clean"); fflush(stdout); system(fmt("\"." DLM "%s" DLM "test_interprocess\" clean", destination)); + printf(" .. reader"); fflush(stdout); if (OS == WINDOWS) system(fmt("start "" /b \"." DLM "%s" DLM "test_interprocess\" reader", destination)); else system(fmt("\"." DLM "%s" DLM "test_interprocess\" reader &", destination)); + printf(" .. writer"); fflush(stdout); code = system(fmt("\"." DLM "%s" DLM "test_interprocess\" writer", destination)); + printf(" .. done"); fflush(stdout); if (code == 0) printf("interprocess - OK\n"); else { |