From 862304a1fc898a18f35c4a8c85824a1a7a5a2158 Mon Sep 17 00:00:00 2001 From: Yanqin Jin Date: Thu, 24 Mar 2022 11:27:12 -0700 Subject: [PATCH] Add two new targets to determinator (#9753) Summary: Test plan ``` build_tools/rocksdb-lego-determinator stress_crash_with_multiops_wc_txn build_tools/rocksdb-lego-determinator stress_crash_with_multiops_wp_txn ``` Spot check the printed job spec. Pull Request resolved: https://github.com/facebook/rocksdb/pull/9753 Reviewed By: jay-zhuang Differential Revision: D35117116 Pulled By: riversand963 fbshipit-source-id: a7ed82e8cb9bc2fd13f4f00291c6a39457415fb0 --- build_tools/rocksdb-lego-determinator | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/build_tools/rocksdb-lego-determinator b/build_tools/rocksdb-lego-determinator index 0df9573ed..39bf059ea 100755 --- a/build_tools/rocksdb-lego-determinator +++ b/build_tools/rocksdb-lego-determinator @@ -1330,6 +1330,12 @@ case $1 in stress_crash_with_ts) echo $STRESS_CRASH_TEST_WITH_TS_COMMANDS ;; + stress_crash_with_multiops_wc_txn) + echo $STRESS_CRASH_TEST_WITH_MULTIOPS_WC_TXN_COMMANDS + ;; + stress_crash_with_multiops_wp_txn) + echo $STRESS_CRASH_TEST_WITH_MULTIOPS_WP_TXN_COMMANDS + ;; write_stress) echo $WRITE_STRESS_COMMANDS ;;