From f4db3e411981d3d5122967a4ba5302807bbe0211 Mon Sep 17 00:00:00 2001 From: sdong Date: Tue, 22 Dec 2020 16:52:51 -0800 Subject: [PATCH] Avoid to force PORTABLE mode in tools/regression_test.sh (#7806) Summary: Right now tools/regression_test.sh always builds RocksDB with PORTABLE=1. There isn't a reason for that. Remove it. Users can always specify PORTABLE through envirionement variable. Pull Request resolved: https://github.com/facebook/rocksdb/pull/7806 Test Plan: Run tools/regression_test.sh and see it still builds. Reviewed By: ajkr Differential Revision: D25687911 fbshipit-source-id: 1c0b03e5df890babc8b7d8af48b48774d9a4600c --- tools/regression_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/regression_test.sh b/tools/regression_test.sh index 79963738f..ed3ef7ab3 100755 --- a/tools/regression_test.sh +++ b/tools/regression_test.sh @@ -377,7 +377,7 @@ function build_db_bench_and_ldb { make clean exit_on_error $? - DEBUG_LEVEL=0 PORTABLE=1 make db_bench ldb -j32 + DEBUG_LEVEL=0 make db_bench ldb -j32 exit_on_error $? }