mirror of
https://github.com/radareorg/radare2.git
synced 2025-04-03 01:52:04 +00:00
Add R2R_SKIP_ASM env var handling in r2r ##test (#18462)
This commit is contained in:
parent
793c0b00a2
commit
c11cd5c69b
1
.github/workflows/tcc.yml
vendored
1
.github/workflows/tcc.yml
vendored
@ -50,5 +50,6 @@ jobs:
|
||||
run: |
|
||||
r2 -v
|
||||
r2r -v
|
||||
export R2R_SKIP_ASM=1
|
||||
export R2R_SKIP_ARCHOS=1
|
||||
make -C test
|
||||
|
@ -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);
|
||||
|
@ -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");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user