Imported Upstream version 1.5.1

This commit is contained in:
Mario Fetka
2020-09-22 02:25:22 +02:00
commit 434d6067d9
2103 changed files with 928962 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/bash
set -e
XTREEMFS_DIR="$1"
TGZ_ARCHIVE="cpp.tgz"
MOUNT="$PWD"
cd "$XTREEMFS_DIR"
tar czf "${MOUNT}/${TGZ_ARCHIVE}" "cpp" --exclude="build" --exclude="thirdparty"
cd "$MOUNT"
tar zxf "$TGZ_ARCHIVE"
find . -name '*.cpp' >/dev/null
grep -R 'test' . >/dev/null