Add TCM config filres for tizen and android.
Signed-off-by: Gichan Jang <gichan2.jang@samsung.com>
--- /dev/null
+version: 2
+test:
+ - name: JAVA_NNSTREAMER_API
+ testCaseLanguage: JAVA
+ testFW: JUNIT
+ testCaseFolder:
+ - ./java/android/nnstreamer/src/androidTest/java/org/nnsuite/nnstreamer
+
+ testFile:
+ - extension: java
+ starts:
+ - APITest
+
+ testCase:
+ - condition:
+ - annotation:
+ match:
+ - '@Test'
+
+ negativeTestCase:
+ - condition:
+ - testName:
+ ends:
+ - _n
+
+ positiveTestCase:
+ - condition:
+ - inverse: negativeTestCase
--- /dev/null
+version: 2
+test:
+ - name: TIZEN_NNSTREAMER_API
+ testCaseLanguage: CPP
+ testFW: GTEST
+ testCaseFolder:
+ - ./tests/
+
+ testFile:
+ - extension: cc
+ starts:
+ - unittest
+
+ testCase:
+ - condition:
+ - functionName:
+ starts:
+ - 'TEST'
+
+ negativeTestCase:
+ - condition:
+ - testName:
+ ends:
+ - _n
+
+ positiveTestCase:
+ - condition:
+ - inverse: negativeTestCase