[TCM] Add TCM config files
authorGichan Jang <gichan2.jang@samsung.com>
Tue, 6 Apr 2021 08:00:05 +0000 (17:00 +0900)
committerjaeyun-jung <39614140+jaeyun-jung@users.noreply.github.com>
Wed, 7 Apr 2021 08:51:45 +0000 (17:51 +0900)
Add TCM config filres for tizen and android.

Signed-off-by: Gichan Jang <gichan2.jang@samsung.com>
.ahub/tcchecker-tca/config_android.yaml [new file with mode: 0644]
.ahub/tcchecker-tca/config_tizen.yaml [new file with mode: 0644]

diff --git a/.ahub/tcchecker-tca/config_android.yaml b/.ahub/tcchecker-tca/config_android.yaml
new file mode 100644 (file)
index 0000000..3e229a1
--- /dev/null
@@ -0,0 +1,28 @@
+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
diff --git a/.ahub/tcchecker-tca/config_tizen.yaml b/.ahub/tcchecker-tca/config_tizen.yaml
new file mode 100644 (file)
index 0000000..adad984
--- /dev/null
@@ -0,0 +1,28 @@
+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