mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-20 12:52:55 +00:00
s/drmtest_subtest_block/drmtest_subtest/
The _block postfix meant to convey that a C statement/block must follow can be misread as the verb to block. So drop it. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
+3
-3
@@ -99,9 +99,9 @@ void drmtest_progress(const char *header, uint64_t i, uint64_t total);
|
||||
jmp_buf drmtest_subtest_jmpbuf;
|
||||
void drmtest_subtest_init(int argc, char **argv);
|
||||
bool __drmtest_run_subtest(const char *subtest_name);
|
||||
#define drmtest_subtest_block(name) for (; __drmtest_run_subtest((name)) && \
|
||||
(setjmp(drmtest_subtest_jmpbuf) == 0); \
|
||||
drmtest_success())
|
||||
#define drmtest_subtest(name) for (; __drmtest_run_subtest((name)) && \
|
||||
(setjmp(drmtest_subtest_jmpbuf) == 0); \
|
||||
drmtest_success())
|
||||
bool drmtest_only_list_subtests(void);
|
||||
void drmtest_skip(void);
|
||||
void drmtest_success(void);
|
||||
|
||||
Reference in New Issue
Block a user