Merge "sw/kelvin: add test target for newly added mul op for Kelvin"
diff --git a/tests/tflm/BUILD b/tests/tflm/BUILD
index 183451f..3834394 100644
--- a/tests/tflm/BUILD
+++ b/tests/tflm/BUILD
@@ -102,6 +102,23 @@
 )
 
 kelvin_test(
+    name = "mul_test",
+    srcs = [
+        "@tflite-micro//tensorflow/lite/micro/kernels:mul_test.cc",
+    ],
+    hw_test_size = "large",
+    deps = [
+        "//crt",
+        "@tflite-micro//tensorflow/lite/c:common",
+        "@tflite-micro//tensorflow/lite/kernels/internal:tensor",
+        "@tflite-micro//tensorflow/lite/micro:micro_utils",
+        "@tflite-micro//tensorflow/lite/micro:test_helpers",
+        "@tflite-micro//tensorflow/lite/micro/kernels:kernel_runner",
+        "@tflite-micro//tensorflow/lite/micro/testing:micro_test",
+    ],
+)
+
+kelvin_test(
     name = "pooling_test",
     srcs = [
         "@tflite-micro//tensorflow/lite/micro/kernels:pooling_test.cc",