mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-30 00:52:16 +08:00
Fix a few non-dash safe xstormy16 shell scripts.
Noticed by a customer while looking at a tangentially related problem. The gas testsuite for xstormy16 has two scripts that have a typo on the first line, they are missing the !. They also use shell syntax that doesn't work on a system where /bin/sh is dash. So I fixed the typo, changed the shell to bash, and made them executable, so that they now work when run directly even if /bin/sh is dash. gas/ * testsuite/gas/xstormy16/allinsn.sh: Change first line to #!/bin/bash and make it executable. * testsuite/gas/xstormy16/gcc.sh: Likewise.
This commit is contained in:
@ -1,3 +1,9 @@
|
|||||||
|
2019-06-26 Jim Wilson <jimw@sifive.com>
|
||||||
|
|
||||||
|
* testsuite/gas/xstormy16/allinsn.sh: Change first line to
|
||||||
|
#!/bin/bash and make it executable.
|
||||||
|
* testsuite/gas/xstormy16/gcc.sh: Likewise.
|
||||||
|
|
||||||
2019-06-26 Lili Cui <lili.cui@intel.com>
|
2019-06-26 Lili Cui <lili.cui@intel.com>
|
||||||
|
|
||||||
* doc/c-i386.texi: Document x/y/z instruction sufffixes in AT&T
|
* doc/c-i386.texi: Document x/y/z instruction sufffixes in AT&T
|
||||||
|
2
gas/testsuite/gas/xstormy16/allinsn.sh
Normal file → Executable file
2
gas/testsuite/gas/xstormy16/allinsn.sh
Normal file → Executable file
@ -1,4 +1,4 @@
|
|||||||
#/bin/sh
|
#!/bin/bash
|
||||||
# Generate test result data for xstormy16 GAS testing.
|
# Generate test result data for xstormy16 GAS testing.
|
||||||
# This script is machine generated.
|
# This script is machine generated.
|
||||||
# It is intended to be run in the testsuite source directory.
|
# It is intended to be run in the testsuite source directory.
|
||||||
|
2
gas/testsuite/gas/xstormy16/gcc.sh
Normal file → Executable file
2
gas/testsuite/gas/xstormy16/gcc.sh
Normal file → Executable file
@ -1,4 +1,4 @@
|
|||||||
#/bin/sh
|
#!/bin/bash
|
||||||
# Generate test result data for xstormy16 GAS testing.
|
# Generate test result data for xstormy16 GAS testing.
|
||||||
# It is intended to be run in the testsuite source directory.
|
# It is intended to be run in the testsuite source directory.
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user