Blame SOURCES/0042-Add-a-test-for-multiple-calls-of-Agent_OnLoad.patch

78a2f7
From 4cbac07ce5e03172636dc7b782a4e3d67870bac5 Mon Sep 17 00:00:00 2001
78a2f7
From: Jakub Filak <jfilak@redhat.com>
78a2f7
Date: Tue, 4 Feb 2014 16:38:02 +0100
78a2f7
Subject: [PATCH 42/43] Add a test for multiple calls of Agent_OnLoad
78a2f7
78a2f7
Related to rhbz#1063322
78a2f7
---
78a2f7
 test/CMakeLists.txt                 | 10 ++++++++++
78a2f7
 test/outputs/run_three_times.log.in | 13 +++++++++++++
78a2f7
 2 files changed, 23 insertions(+)
78a2f7
 create mode 100644 test/outputs/run_three_times.log.in
78a2f7
78a2f7
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
78a2f7
index 0439294..5b117a1 100644
78a2f7
--- a/test/CMakeLists.txt
78a2f7
+++ b/test/CMakeLists.txt
78a2f7
@@ -317,5 +317,15 @@ _add_test(run_remote_thread 0)
78a2f7
 _add_analyze_test(not_reportable_1remote_class)
78a2f7
 _add_analyze_test(not_reportable_3remote_classes)
78a2f7
 
78a2f7
+_add_test_target(
78a2f7
+    run_three_times
78a2f7
+    SimpleTest
78a2f7
+    DEPENDS ${TEST_JAVA_TARGETS}
78a2f7
+    AGENT_OPTIONS caught=java.lang.ArrayIndexOutOfBoundsException:java.lang.NullPointerException -agentlib=${AGENT_NAME}=output=/proc/pid/0/java.log -agentlib=${AGENT_NAME}=output=/proc/pid/1/java.log
78a2f7
+)
78a2f7
+_add_test(run_three_times 2)
78a2f7
+
78a2f7
+
78a2f7
+
78a2f7
 get_directory_property(all_run_targets ALL_RUN_TARGETS)
78a2f7
 add_custom_target(run_all DEPENDS ${all_run_targets})
78a2f7
diff --git a/test/outputs/run_three_times.log.in b/test/outputs/run_three_times.log.in
78a2f7
new file mode 100644
78a2f7
index 0000000..aa8b2c8
78a2f7
--- /dev/null
78a2f7
+++ b/test/outputs/run_three_times.log.in
78a2f7
@@ -0,0 +1,13 @@
78a2f7
+Caught exception java.lang.ArrayIndexOutOfBoundsException in method SimpleTest.throwIndexOutOfBoundsException()
78a2f7
+Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 42
78a2f7
+	at SimpleTest.throwIndexOutOfBoundsException(SimpleTest.java:24) [file:@CMAKE_BINARY_DIR@/test/SimpleTest.class]
78a2f7
+	at SimpleTest.catchIndexOutOfBoundsException(SimpleTest.java:47) [file:@CMAKE_BINARY_DIR@/test/SimpleTest.class]
78a2f7
+	at SimpleTest.throwAndCatchAllExceptions(SimpleTest.java:61) [file:@CMAKE_BINARY_DIR@/test/SimpleTest.class]
78a2f7
+	at SimpleTest.main(SimpleTest.java:81) [file:@CMAKE_BINARY_DIR@/test/SimpleTest.class]
78a2f7
+executable: @CMAKE_BINARY_DIR@/test/SimpleTest.class
78a2f7
+Uncaught exception java.lang.NullPointerException in method SimpleTest.throwNullPointerException()
78a2f7
+Exception in thread "main" java.lang.NullPointerException
78a2f7
+	at SimpleTest.throwNullPointerException(SimpleTest.java:36) [file:@CMAKE_BINARY_DIR@/test/SimpleTest.class]
78a2f7
+	at SimpleTest.throwAndDontCatchException(SimpleTest.java:71) [file:@CMAKE_BINARY_DIR@/test/SimpleTest.class]
78a2f7
+	at SimpleTest.main(SimpleTest.java:83) [file:@CMAKE_BINARY_DIR@/test/SimpleTest.class]
78a2f7
+executable: @CMAKE_BINARY_DIR@/test/SimpleTest.class
78a2f7
-- 
78a2f7
1.8.3.1
78a2f7