summaryrefslogtreecommitdiff
path: root/tests/gem_gtt_concurrent_blit.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gem_gtt_concurrent_blit.c')
-rw-r--r--tests/gem_gtt_concurrent_blit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/gem_gtt_concurrent_blit.c b/tests/gem_gtt_concurrent_blit.c
index 63fbcc279..3f3527a9f 100644
--- a/tests/gem_gtt_concurrent_blit.c
+++ b/tests/gem_gtt_concurrent_blit.c
@@ -120,7 +120,7 @@ main(int argc, char **argv)
}
/* try to overwrite the source values */
- drmtest_subtest_block("overwrite-source") {
+ drmtest_subtest("overwrite-source") {
for (i = 0; i < num_buffers; i++) {
set_bo(src[i], i, width, height);
set_bo(dst[i], i, width, height);
@@ -134,7 +134,7 @@ main(int argc, char **argv)
}
/* try to read the results before the copy completes */
- drmtest_subtest_block("early-read") {
+ drmtest_subtest("early-read") {
for (i = num_buffers; i--; )
set_bo(src[i], 0xdeadbeef, width, height);
for (i = 0; i < num_buffers; i++)
@@ -144,7 +144,7 @@ main(int argc, char **argv)
}
/* and finally try to trick the kernel into loosing the pending write */
- drmtest_subtest_block("gpu-read-after-write") {
+ drmtest_subtest("gpu-read-after-write") {
for (i = num_buffers; i--; )
set_bo(src[i], 0xabcdabcd, width, height);
for (i = 0; i < num_buffers; i++)
@@ -158,7 +158,7 @@ main(int argc, char **argv)
drmtest_fork_signal_helper();
/* try to read the results before the copy completes */
- drmtest_subtest_block("overwrite-source-interruptible") {
+ drmtest_subtest("overwrite-source-interruptible") {
for (loop = 0; loop < 10; loop++) {
gem_quiescent_gpu(fd);
for (i = 0; i < num_buffers; i++) {
@@ -175,7 +175,7 @@ main(int argc, char **argv)
}
/* try to read the results before the copy completes */
- drmtest_subtest_block("early-read-interruptible") {
+ drmtest_subtest("early-read-interruptible") {
for (loop = 0; loop < 10; loop++) {
gem_quiescent_gpu(fd);
for (i = num_buffers; i--; )
@@ -188,7 +188,7 @@ main(int argc, char **argv)
}
/* and finally try to trick the kernel into loosing the pending write */
- drmtest_subtest_block("gpu-read-after-write-interruptible") {
+ drmtest_subtest("gpu-read-after-write-interruptible") {
for (loop = 0; loop < 10; loop++) {
gem_quiescent_gpu(fd);
for (i = num_buffers; i--; )