Add R2R_SKIP_ASM env var handling in r2r ##test (#18462)

This commit is contained in:
pancake 2021-03-15 01:31:08 +01:00 committed by GitHub
parent 793c0b00a2
commit c11cd5c69b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View File

@ -50,5 +50,6 @@ jobs:
run: |
r2 -v
r2r -v
export R2R_SKIP_ASM=1
export R2R_SKIP_ARCHOS=1
make -C test

View File

@ -601,6 +601,7 @@ static bool database_load(R2RTestDatabase *db, const char *path, int depth) {
RStrBuf subpath;
r_strbuf_init (&subpath);
const bool skip_archos = r_sys_getenv_asbool ("R2R_SKIP_ARCHOS");
const bool skip_asm = r_sys_getenv_asbool ("R2R_SKIP_ASM");
bool ret = true;
r_list_foreach (dir, it, subname) {
if (*subname == '.') {
@ -611,6 +612,10 @@ static bool database_load(R2RTestDatabase *db, const char *path, int depth) {
eprintf ("Skipping %s"R_SYS_DIR"%s because it requires additional dependencies.\n", path, subname);
continue;
}
if (skip_asm && strstr (path, R_SYS_DIR"asm"R_SYS_DIR)) {
eprintf ("R2R_SKIP_ASM: Skipping %s.\n", path);
continue;
}
bool is_archos_folder = !strcmp (path, "archos") || r_str_endswith (path, R_SYS_DIR"archos");
if (is_archos_folder && (skip_archos || strcmp (subname, R2R_ARCH_OS))) {
eprintf ("Skipping %s"R_SYS_DIR"%s because it does not match the current platform.\n", path, subname);

View File

@ -62,6 +62,7 @@ static int help(bool verbose) {
" -o [file] output test run information in JSON format to file"
"\n"
"R2R_SKIP_ARCHOS=1 # do not run the arch-os-specific tests\n"
"R2R_SKIP_ASM=1 # do not run the rasm2 tests\n"
"Supported test types: @json @unit @fuzz @arch @cmds\n"
"OS/Arch for archos tests: "R2R_ARCH_OS"\n");
}