Skip to content

Commit 011c3c9

Browse files
authored
Update CMakeLists.txt
Signed-off-by: Dariusz Frankiewicz <5229380+dariusz-f@users.noreply.github.com>
1 parent c259862 commit 011c3c9

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ set_tests_properties(decode PROPERTIES
263263

264264
# Test - decode qp_A.apv
265265
add_test(NAME decode_qp_A COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/qp_A.apv -v 3 --hash)
266-
set_tests_properties(decode PROPERTIES
266+
set_tests_properties(decode_qp_A PROPERTIES
267267
TIMEOUT 10
268268
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
269269
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -272,7 +272,7 @@ set_tests_properties(decode PROPERTIES
272272

273273
# Test - decode qp_B.apv
274274
add_test(NAME decode_qp_B COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/qp_B.apv -v 3 --hash)
275-
set_tests_properties(decode PROPERTIES
275+
set_tests_properties(decode_qp_B PROPERTIES
276276
TIMEOUT 10
277277
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
278278
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -281,7 +281,7 @@ set_tests_properties(decode PROPERTIES
281281

282282
# Test - decode qp_C.apv
283283
add_test(NAME decode_qp_C COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/qp_C.apv -v 3 --hash)
284-
set_tests_properties(decode PROPERTIES
284+
set_tests_properties(decode_qp_C PROPERTIES
285285
TIMEOUT 10
286286
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
287287
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -290,7 +290,7 @@ set_tests_properties(decode PROPERTIES
290290

291291
# Test - decode qp_D.apv
292292
add_test(NAME decode_qp_D COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/qp_D.apv -v 3 --hash)
293-
set_tests_properties(decode PROPERTIES
293+
set_tests_properties(decode_qp_D PROPERTIES
294294
TIMEOUT 10
295295
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
296296
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -299,7 +299,7 @@ set_tests_properties(decode PROPERTIES
299299

300300
# Test - decode qp_E.apv
301301
add_test(NAME decode_qp_E COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/qp_E.apv -v 3 --hash)
302-
set_tests_properties(decode PROPERTIES
302+
set_tests_properties(decode_qp_E PROPERTIES
303303
TIMEOUT 10
304304
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
305305
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -308,7 +308,7 @@ set_tests_properties(decode PROPERTIES
308308

309309
# Test - decode syn_A.apv
310310
add_test(NAME decode_syn_A COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/syn_A.apv -v 3 --hash)
311-
set_tests_properties(decode PROPERTIES
311+
set_tests_properties(decode_syn_A PROPERTIES
312312
TIMEOUT 10
313313
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
314314
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -317,7 +317,7 @@ set_tests_properties(decode PROPERTIES
317317

318318
# Test - decode syn_B.apv
319319
add_test(NAME decode_syn_B COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/syn_B.apv -v 3 --hash)
320-
set_tests_properties(decode PROPERTIES
320+
set_tests_properties(decode_syn_B PROPERTIES
321321
TIMEOUT 10
322322
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
323323
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -326,7 +326,7 @@ set_tests_properties(decode PROPERTIES
326326

327327
# Test - decode tile_A.apv
328328
add_test(NAME decode_tile_A COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/tile_A.apv -v 3 --hash)
329-
set_tests_properties(decode PROPERTIES
329+
set_tests_properties(decode_tile_A PROPERTIES
330330
TIMEOUT 10
331331
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
332332
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -335,7 +335,7 @@ set_tests_properties(decode PROPERTIES
335335

336336
# Test - decode tile_B.apv
337337
add_test(NAME decode_tile_B COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/tile_B.apv -v 3 --hash)
338-
set_tests_properties(decode PROPERTIES
338+
set_tests_properties(decode_tile_B PROPERTIES
339339
TIMEOUT 10
340340
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
341341
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -344,7 +344,7 @@ set_tests_properties(decode PROPERTIES
344344

345345
# Test - decode tile_C.apv
346346
add_test(NAME decode_tile_C COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/tile_C.apv -v 3 --hash)
347-
set_tests_properties(decode PROPERTIES
347+
set_tests_properties(decode_tile_C PROPERTIES
348348
TIMEOUT 10
349349
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
350350
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -353,7 +353,7 @@ set_tests_properties(decode PROPERTIES
353353

354354
# Test - decode tile_D.apv
355355
add_test(NAME decode_tile_D COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/tile_D.apv -v 3 --hash)
356-
set_tests_properties(decode PROPERTIES
356+
set_tests_properties(decode_tile_D PROPERTIES
357357
TIMEOUT 10
358358
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
359359
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"
@@ -362,7 +362,7 @@ set_tests_properties(decode PROPERTIES
362362

363363
# Test - decode tile_E.apv
364364
add_test(NAME decode_tile_E COMMAND ${CMAKE_CURRENT_BINARY_DIR}/bin/oapv_app_dec -i ${CMAKE_CURRENT_SOURCE_DIR}/test/bitstream/tile_E.apv -v 3 --hash)
365-
set_tests_properties(decode PROPERTIES
365+
set_tests_properties(decode_tile_E PROPERTIES
366366
TIMEOUT 10
367367
FAIL_REGULAR_EXPRESSION "Decoded frame count = 0"
368368
PASS_REGULAR_EXPRESSION "Decoded frame count = 3"

0 commit comments

Comments
 (0)