Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/23487)
OP_READ_EXPECT_B(C, "orange");
}
+DEF_SCRIPT(simple_thread_child,
+ "test that RADIX multithreading is working (child)")
+{
+}
+
+DEF_SCRIPT(simple_thread,
+ "test that RADIX multithreading is working")
+{
+ size_t i;
+
+ for (i = 0; i < 2; ++i)
+ OP_SPAWN_THREAD(simple_thread_child);
+}
+
/*
* List of Test Scripts
* ============================================================================
*/
static SCRIPT_INFO *const scripts[] = {
USE(simple_conn)
+ USE(simple_thread)
};