Moved tests from scripts/ to test/scripts/

This commit is contained in:
2022-11-11 14:51:47 +00:00
parent 0aa6e4063b
commit 2c143a8be5
36 changed files with 10 additions and 10 deletions

View File

@@ -128,7 +128,7 @@ typedef struct Payload {
int main() {
{
//run each file in ../scripts/test/
//run each file in test/scripts
Payload payloads[] = {
{"interactions.toy", "standard", hookStandard}, //interactions needs standard
{"standard.toy", "standard", hookStandard},
@@ -140,7 +140,7 @@ int main() {
printf("Running %s\n", payloads[i].fname);
char fname[128];
snprintf(fname, 128, "../scripts/test/lib/%s", payloads[i].fname);
snprintf(fname, 128, "scripts/lib/%s", payloads[i].fname);
//compile the source
size_t size = 0;