summaryrefslogtreecommitdiff
path: root/infra/commands
diff options
context:
space:
mode:
authorDmitriy Nikiforov <d.nikiforov@partner.samsung.com>2017-09-05 22:10:27 +0300
committerGerrit Code Review <gerrit@review.ap-northeast-2.compute.internal>2017-09-12 12:53:46 +0000
commit0677b3a97428f6fa942967ab66c57efc5045f1df (patch)
tree1b7b774e6aaa4148d37a75374d54a2ae4ad4e8f4 /infra/commands
parent2ed17c4b55d4db3db2249b7bd3522f8d09656e0b (diff)
downloadfuzz-testing-0677b3a97428f6fa942967ab66c57efc5045f1df.tar.gz
fuzz-testing-0677b3a97428f6fa942967ab66c57efc5045f1df.tar.bz2
fuzz-testing-0677b3a97428f6fa942967ab66c57efc5045f1df.zip
Update help messages for all tizen_fuzz.sh script commands
Change-Id: I54c642d8b6b6ab67953f607c01357ffc6d618cf0
Diffstat (limited to 'infra/commands')
-rwxr-xr-xinfra/commands/build-all.sh6
-rwxr-xr-xinfra/commands/build.sh8
-rwxr-xr-xinfra/commands/list.sh4
-rwxr-xr-xinfra/commands/publish.sh8
-rwxr-xr-xinfra/commands/report.sh6
-rwxr-xr-xinfra/commands/run.sh4
6 files changed, 18 insertions, 18 deletions
diff --git a/infra/commands/build-all.sh b/infra/commands/build-all.sh
index 89e4ef5..22a4eec 100755
--- a/infra/commands/build-all.sh
+++ b/infra/commands/build-all.sh
@@ -11,15 +11,15 @@ function print_help {
cat << EOF
Usage: ${EXEC} build-all [OPTS] TARGETS_DIR
-Traverses the specified targets directory and builds all found
-targets in subdirectories.
+Traverses the specified directory and builds all found fuzz projects in
+subdirectories.
Options:
-h, --help Prints this message.
-a, --arch ARCH Architecture: x86_64 or i586 (default: x86_64)
-d, --dicts DICT_DIR Include dictionaries from the specified directory to build
artifacts. Exact list of needed dictionaries should be
- specified in targetspec.
+ specified in the targetspec.
-l, --logpath Directory where separate build logs for each target will
be created.
EOF
diff --git a/infra/commands/build.sh b/infra/commands/build.sh
index 7fde603..0d42e08 100755
--- a/infra/commands/build.sh
+++ b/infra/commands/build.sh
@@ -24,7 +24,7 @@ function print_help {
cat << EOF
Usage: ${EXEC} build [OPTS] TARGET_DIR
-Builds a target in the specified directory.
+Builds a fuzz project in the specified directory.
Options:
-h, --help Prints this message.
@@ -33,11 +33,11 @@ Options:
artifacts. Exact list of needed dictionaries should be
specified in targetspec.
-i, --noinit Adds '--noinit' to gbs build arguments. Use cautiously. This
- option will only work if you had built THIS target without
+ option will only work if you had built THIS project without
this option before.
- -o, --only-target Build only target functions, without rebuild of dependencies.
+ -o, --only-target Build only fuzz targets, without rebuild of dependencies.
Use cautiously. This option will only work if you had built
- THIS target without this option before.
+ THIS project without this option before.
-s, --spec SPEC Path to the custom target specification file to be
used instead of the default one.
EOF
diff --git a/infra/commands/list.sh b/infra/commands/list.sh
index b117ffc..9a02d35 100755
--- a/infra/commands/list.sh
+++ b/infra/commands/list.sh
@@ -4,11 +4,11 @@ function print_help {
cat << EOF
Usage: ${EXEC} list [OPTS]
-Lists all built targets.
+Lists all built fuzz projects.
Options:
-h, --help Prints this message.
- -l, --long Prints additional details for each target.
+ -l, --long Prints additional details for each project.
EOF
}
diff --git a/infra/commands/publish.sh b/infra/commands/publish.sh
index 61e88f9..ca9ff02 100755
--- a/infra/commands/publish.sh
+++ b/infra/commands/publish.sh
@@ -6,17 +6,17 @@
function print_help {
cat << EOF
-Usage: ${EXEC} publish [OPTS] TARGET
+Usage: ${EXEC} publish [OPTS] FUZZ_PROJECT
-Pushes specified built target to device with all sanitized dependencies
-and prepares the device to run this target.
+Pushes specified built fuzz project to device with all sanitized dependencies
+and prepares the device to run this project.
Options:
-h, --help Prints this message.
-A, --with-asan Also, push the libasan package to device.
-c, --corpus CORPUS_DIR Also, push the seed corpus files to device
from the specified directory.
- -i, --install-deps Install missing dependencies.
+ -i, --install-deps Install required utilities on device.
-s, --serial SERIAL_NUMBER Send all sdb commands to device with specified
serial number.
EOF
diff --git a/infra/commands/report.sh b/infra/commands/report.sh
index 6b143cd..cf77e6b 100755
--- a/infra/commands/report.sh
+++ b/infra/commands/report.sh
@@ -6,15 +6,15 @@
function print_help {
cat << EOF
-Usage: ${EXEC} report [OPTS] TARGET FUZZ_TEST
+Usage: ${EXEC} report [OPTS] FUZZ_PROJECT FUZZ_TARGET
-Pulls symbolized fuzzing logs for the fuzz test and corresponding
+Pulls symbolized fuzzing logs for the fuzz target and corresponding
artifacts to the host.
Options:
-h, --help Prints this message.
-c, --coverage Create coverage report.
- -i, --install-deps Install required utilities.
+ -i, --install-deps Install required utilities on device.
-s, --serial SERIAL_NUMBER Send all sdb commands to device with specified
serial number.
EOF
diff --git a/infra/commands/run.sh b/infra/commands/run.sh
index 2355ec4..5b39b6f 100755
--- a/infra/commands/run.sh
+++ b/infra/commands/run.sh
@@ -6,9 +6,9 @@
function print_help {
cat << EOF
-Usage: ${EXEC} run [OPTS] TARGET FUZZ_TEST
+Usage: ${EXEC} run [OPTS] FUZZ_PROJECT FUZZ_TARGET
-Runs one fuzzing test of the specified target.
+Runs one fuzz target of the specified project.
Options:
-h, --help Prints this message.