[RESTRICT AUTOMERGE] Updated CTS test for Android Security b/32096780

Updated the return code to return EXIT_FAILURE when the test exits before hitting the vulnerability

Bug: 32096780
Bug: 72378600
Test: Ran the new testcase on android-8.0.0_r30 with and without patch

Change-Id: I789a1d457fd7065e46defafac7408ff6bb29171f
Merged-In: I789a1d457fd7065e46defafac7408ff6bb29171f
diff --git a/hostsidetests/securitybulletin/securityPatch/CVE-2017-0713/poc.cpp b/hostsidetests/securitybulletin/securityPatch/CVE-2017-0713/poc.cpp
index 5d8b3cb..ca922be 100644
--- a/hostsidetests/securitybulletin/securityPatch/CVE-2017-0713/poc.cpp
+++ b/hostsidetests/securitybulletin/securityPatch/CVE-2017-0713/poc.cpp
@@ -63,7 +63,7 @@
 
 int main(int argc, char **argv) {
     if (argc != 2) {
-        return EXIT_SUCCESS;
+        return EXIT_FAILURE;
     }
     SkWStream* outputStream = new NullWStream();
     SkScalar pageWidth = 100;