History log of /src/bin/sh/tests/execution/int-cmd1.0 (Results 1 – 6 of 6)
Revision Date Author Comments
# d0b2dbfa 16-Aug-2023 Warner Losh <imp@FreeBSD.org>

Remove $FreeBSD$: one-line sh pattern

Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/


# a1423456 20-Aug-2022 Piotr Pawel Stefaniak <pstef@FreeBSD.org>

sh: nullify ENV in tests

This is to avoid loading .shrc which may contain commands that would
result in output different than expected.

Reviewed by: jilles
Differential Revision: https://reviews.fr

sh: nullify ENV in tests

This is to avoid loading .shrc which may contain commands that would
result in output different than expected.

Reviewed by: jilles
Differential Revision: https://reviews.freebsd.org/D35876

show more ...


# d0b2dbfa 16-Aug-2023 Warner Losh <imp@FreeBSD.org>

Remove $FreeBSD$: one-line sh pattern

Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/


# a1423456 20-Aug-2022 Piotr Pawel Stefaniak <pstef@FreeBSD.org>

sh: nullify ENV in tests

This is to avoid loading .shrc which may contain commands that would
result in output different than expected.

Reviewed by: jilles
Differential Revision: https://reviews.fr

sh: nullify ENV in tests

This is to avoid loading .shrc which may contain commands that would
result in output different than expected.

Reviewed by: jilles
Differential Revision: https://reviews.freebsd.org/D35876

show more ...


# 13de33a5 11-Dec-2013 Julio Merino <jmmv@FreeBSD.org>

Migrate tools/regression/bin/ tests to the new layout.

This change is a proof of concept on how to easily integrate existing
tests from the tools/regression/ hierarchy into the /usr/tests/ test
suit

Migrate tools/regression/bin/ tests to the new layout.

This change is a proof of concept on how to easily integrate existing
tests from the tools/regression/ hierarchy into the /usr/tests/ test
suite and on how to adapt them to the new layout for src.

To achieve these goals, this change:

- Moves tests from tools/regression/bin/<tool>/ to bin/<tool>/tests/.
- Renames the previous regress.sh files to legacy_test.sh.
- Adds Makefiles to build and install the tests and all their supporting
data files into /usr/tests/bin/.
- Plugs the legacy_test test programs into the test suite using the new
TAP backend for Kyua (appearing in 0.8) so that the code of the test
programs does not have to change.
- Registers the new directories in the BSD.test.dist mtree file.

Reviewed by: freebsd-testing
Approved by: rpaulo (mentor)

show more ...


# fd7d6d8a 12-Jul-2013 Jilles Tjoelker <jilles@FreeBSD.org>

sh: Do not read from stdin if an error occurs during -i -c cmd.

Although using -i with -c does not seem very useful, it seems inappropriate
to read commands from the terminal in this case.

Side eff

sh: Do not read from stdin if an error occurs during -i -c cmd.

Although using -i with -c does not seem very useful, it seems inappropriate
to read commands from the terminal in this case.

Side effect: if the -s -c extension is used and the -s option is turned off
using 'set +s' during the interactive part, the shell now exits after an
error or interrupt. Note that POSIX only specifies -s as option to sh, not
to set.

See also Austin Group issue #718.

show more ...