diff options
author | Eric Anderson <ejona@google.com> | 2018-10-17 11:42:10 -0700 |
---|---|---|
committer | Eric Anderson <ejona@google.com> | 2018-10-17 11:42:10 -0700 |
commit | cbd1b69caadd0881d08addfad34451a69df55062 (patch) | |
tree | 891c3b9d552b9bcec8f84d4a609e8acf22b558a6 /tools | |
parent | dfb1a0f20624417bff408a14b12a23713085b999 (diff) |
run_interop_tests: Use "GENERATED" comment in generated scripts
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/run_tests/run_interop_tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py index 1d639edb82..a3ff453b88 100755 --- a/tools/run_tests/run_interop_tests.py +++ b/tools/run_tests/run_interop_tests.py @@ -688,6 +688,8 @@ def write_cmdlog_maybe(cmdlog, filename): if cmdlog: with open(filename, 'w') as logfile: logfile.write('#!/bin/bash\n') + logfile.write('# DO NOT MODIFY\n') + logfile.write('# This file is generated by run_interop_tests.py/create_testcases.sh\n') logfile.writelines("%s\n" % line for line in cmdlog) print('Command log written to file %s' % filename) |