瀏覽代碼

tc-testing: Add newline when writing test case files

When using the -i feature to generate random ID numbers for test
cases in tdc, the function that writes the JSON to file doesn't
add a newline character to the end of the file, so we have to
add our own.

Signed-off-by: Lucas Bates <lucasb@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Lucas Bates 7 年之前
父節點
當前提交
c0b6edef0b
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      tools/testing/selftests/tc-testing/tdc.py

+ 1 - 0
tools/testing/selftests/tc-testing/tdc.py

@@ -490,6 +490,7 @@ def generate_case_ids(alltests):
                     testlist.append(t)
                     testlist.append(t)
         outfile = open(f, "w")
         outfile = open(f, "w")
         json.dump(testlist, outfile, indent=4)
         json.dump(testlist, outfile, indent=4)
+        outfile.write("\n")
         outfile.close()
         outfile.close()
 
 
 def filter_tests_by_id(args, testlist):
 def filter_tests_by_id(args, testlist):