Return status of the test

Adding a new status code to return if there are any test failures.
This helps to automate these arch-tests on the running host.
diff --git a/api-tests/val/common/val.h b/api-tests/val/common/val.h
index f2ccf7a..243c584 100644
--- a/api-tests/val/common/val.h
+++ b/api-tests/val/common/val.h
@@ -241,6 +241,7 @@
   VAL_STATUS_UNSUPPORTED                 = 0x2B,
   VAL_STATUS_DRIVER_FN_FAILED            = 0x2C,
   VAL_STATUS_NO_TESTS                    = 0X2D,
+  VAL_STATUS_TEST_FAILED                 = 0x2E,
   VAL_STATUS_ERROR_MAX                   = INT_MAX,
 } val_status_t;