fix app test for docker wrapper; works now on Win

This commit is contained in:
davidpanderson 2024-11-06 17:33:44 -08:00
parent 13a7060bbc
commit d06999a27c
1 changed files with 5 additions and 2 deletions

View File

@ -50,7 +50,7 @@
// define exactly one
//#define APP_NONE
#define APP_NONE
//#define APP_WSL_WRAPPER
// type physical logical copy?
// app wsl_wrapper.exe wsl_wrapper.exe
@ -58,7 +58,7 @@
// app main main yes
// input infile in
// output outfile out
#define APP_DOCKER_WRAPPER
//#define APP_DOCKER_WRAPPER
// type physical logical copy?
// app worker worker yes
// app job.toml job.toml yes
@ -209,6 +209,9 @@ void CLIENT_STATE::app_test_init() {
av->app_files.push_back(
*make_file(app->project, "worker", NULL, INPUT_FILE, true)
);
av->app_files.push_back(
*make_file(app->project, "main.sh", "main.sh", INPUT_FILE, true)
);
av->app_files.push_back(
*make_file(app->project, "job.toml", "job.toml", INPUT_FILE, true)
);