summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2018-09-22 15:46:43 -0400
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2018-09-22 15:46:43 -0400
commit807e67c902f0406ed8c186c0afa7ee7f799bbf7b (patch)
treee6c9e0d655954fb16fc7c5b021cec901d9167dc7
parent4131e8e403ad527ae82dd5632404762889fdd385 (diff)
downloadmongo-807e67c902f0406ed8c186c0afa7ee7f799bbf7b.tar.gz
SERVER-36757 Generate and extract mongoebench-compatible JSON config files to consistent locations
(cherry picked from commit e86d0110125a5d6678d19aa691c1c4ea6a84d647)
-rw-r--r--.gitignore3
-rwxr-xr-xsrc/third_party/scripts/mongo-perf_get_sources.sh6
2 files changed, 6 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index f33874fbbdc..af2972754d6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -112,6 +112,9 @@ scratch
/clientTest
/httpClientTest
+# benchrun files
+/benchrun_embedded
+
# Linters
.mypy_cache
diff --git a/src/third_party/scripts/mongo-perf_get_sources.sh b/src/third_party/scripts/mongo-perf_get_sources.sh
index a0b79b20d15..80f9d1bc07b 100755
--- a/src/third_party/scripts/mongo-perf_get_sources.sh
+++ b/src/third_party/scripts/mongo-perf_get_sources.sh
@@ -26,7 +26,7 @@ fi
NAME=mongo-perf
SRC_ROOT=$(mktemp -d /tmp/$NAME.XXXXXX)
trap "rm -rf $SRC_ROOT" EXIT
-DEST_DIR=$(git rev-parse --show-toplevel)/src/third_party/$NAME
+DEST_DIR=$(git rev-parse --show-toplevel)/benchrun_embedded/testcases
git clone --branch=master https://github.com/mongodb/mongo-perf.git $SRC_ROOT
@@ -55,6 +55,6 @@ find testcases -type f -print0 | xargs -0 -I% -n1 -P$NUM_CPUS \
popd
test -d $DEST_DIR && rm -r $DEST_DIR
-mkdir -p $DEST_DIR
+mkdir -p $(dirname $DEST_DIR)
-mv $SRC_ROOT/mongoebench/ $DEST_DIR/
+mv $SRC_ROOT/mongoebench $DEST_DIR