[PATCH] D105489: [compiler-rt] [test] Fix asan symbolize tests on py3.10

Michał Górny via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Tue Jul 6 09:13:49 PDT 2021


mgorny created this revision.
mgorny added a reviewer: delcypher.
Herald added a subscriber: dberris.
mgorny requested review of this revision.

Update the asan_symbolize_script for changes in argparse output
in Python 3.10.  The parser output 'options' instead of 'optional
arguments'.


https://reviews.llvm.org/D105489

Files:
  compiler-rt/test/asan/TestCases/Posix/asan_symbolize_script/logging_options_in_help.cpp
  compiler-rt/test/asan/TestCases/Posix/asan_symbolize_script/plugin_no_op_help_output.cpp


Index: compiler-rt/test/asan/TestCases/Posix/asan_symbolize_script/plugin_no_op_help_output.cpp
===================================================================
--- compiler-rt/test/asan/TestCases/Posix/asan_symbolize_script/plugin_no_op_help_output.cpp
+++ compiler-rt/test/asan/TestCases/Posix/asan_symbolize_script/plugin_no_op_help_output.cpp
@@ -2,6 +2,6 @@
 // RUN: %asan_symbolize --log-level info --plugins %S/plugin_no_op.py --help 2>&1 | FileCheck %s
 // CHECK: Registering plugin NoOpPlugin
 // CHECK: Adding --unlikely-option-name-XXX option
-// CHECK: optional arguments:
+// CHECK: option{{al arguments|s}}:
 // CHECK: --unlikely-option-name-XXX
 
Index: compiler-rt/test/asan/TestCases/Posix/asan_symbolize_script/logging_options_in_help.cpp
===================================================================
--- compiler-rt/test/asan/TestCases/Posix/asan_symbolize_script/logging_options_in_help.cpp
+++ compiler-rt/test/asan/TestCases/Posix/asan_symbolize_script/logging_options_in_help.cpp
@@ -1,5 +1,5 @@
 // RUN: %asan_symbolize --help > %t_help_output.txt
 // RUN: FileCheck %s -input-file=%t_help_output.txt
-// CHECK: optional arguments:
+// CHECK: option{{al arguments|s}}:
 // CHECK: --log-dest
 // CHECK: --log-level


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105489.356750.patch
Type: text/x-patch
Size: 1247 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210706/59e5def0/attachment.bin>


More information about the cfe-commits mailing list