From 8fd019ba7a44507af94cde38df2e49709ba4b396 Mon Sep 17 00:00:00 2001 From: Eryu Guan Date: Wed, 25 Oct 2017 12:06:06 +0800 Subject: [PATCH] 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 Signed-off-by: Eryu Guan --- ltp/fsx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ltp/fsx.c b/ltp/fsx.c index 863d536e..9c358f27 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; -- 2.47.3