One: Compiler How to disable a single project test

Created on 23 Apr 2020  路  3Comments  路  Source: Samsung/ONE

Current tf2tfliteV2_value_pbtxt_test test takes about 140 seconds in my Linux machine.
I'd like to disable this test in my local envrionment.
Is there any existing method for this? Or should I introduce a CMake Define ?

help wanted

Most helpful comment

Not sure this will fit to your case, but I personally use this to exclude some tests

./nncc test -E ".*_remote_test|tf2tfliteV2_.*"

As I understand it call ctest, so man ctest would help

All 3 comments

CC @jinevening @mhs4670go @llFreetimell @parjong @cgbahk

Not sure this will fit to your case, but I personally use this to exclude some tests

./nncc test -E ".*_remote_test|tf2tfliteV2_.*"

As I understand it call ctest, so man ctest would help

This works !!! Thank you !!!

Was this page helpful?
0 / 5 - 0 ratings