aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEryu Guan <eguan@redhat.com>2017-10-25 12:06:06 +0800
committerEryu Guan <eguan@redhat.com>2017-11-10 12:33:38 +0800
commit8fd019ba7a44507af94cde38df2e49709ba4b396 (patch)
treec13a1b122a60be12644036a91f0b1abcc49a9c06
parent7988dbbcebffe79fe524528db115e76b3c20cd90 (diff)
downloadxfstests-8fd019ba7a44507af94cde38df2e49709ba4b396.tar.gz
ltp/fsx: allow comments when reading operations from logs
We use '--replay-ops' option to replay operations in the specified operation log file, but we're not allowed to add comments for the operations in the log, which might be useful when writing regression tests that replay a given sequence of operations. Now treat lines starting with '#' as comments and skip them when reading operations. Reviewed-by: Amir Goldstein <amir73il@gmail.com> Signed-off-by: Eryu Guan <eguan@redhat.com>
-rw-r--r--ltp/fsx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ltp/fsx.c b/ltp/fsx.c
index 863d536e5a..9c358f27bd 100644
--- a/ltp/fsx.c
+++ b/ltp/fsx.c
@@ -1391,7 +1391,7 @@ read_op(struct log_entry *log_entry)
goto fail;
}
str = strtok(line, " \t\n");
- } while (!str);
+ } while (!str || str[0] == '#');
if (strcmp(str, "skip") == 0) {
log_entry->flags |= FL_SKIPPED;