ast icon indicating copy to clipboard operation
ast copied to clipboard

AST - AT&T Software Technology

Results 102 ast issues
Sort by recently updated
recently updated
newest added

See issue #503 for an example where the information in `man ksh` differs from `some_command --help`. In that issue it is with respect to the `hist` command but there are...

enhancement

The `wcstoutf32s()` function is used exactly one place, has zero test coverage, and could be greatly simplified based on that sole use. In fact, it looks like it can be...

cleanup
testing

Outside of the AST time subsystem there are relatively few uses of that code by ksh. One such use is the `tmxdate()` function. It is used in one place in...

RFC
compatibility
cleanup

Please ponder why this function returns NULL if the memory allocation fails (from *src/cmd/ksh93/sh/nvdisc.c*): ``` static_fn void *newnode(const char *name) { size_t s; Namval_t *np = newof(0, Namval_t, 1, s...

question

While working on the `b_alias()` function to make it the first builtin to use `getopt_long()` rather than `optget()` I noticed it has a gross hack to support the bash `hash...

cleanup

While working on the conversion from the AST `optget()` function to the borg standard `getopt_long()` I noticed a weird discrepancy. The definitions of the `.` (dot) command and `source` in...

bug

On Solaris 11, ksh93 does not read the first multibyte character completely with rlogin(1). To reproduce: # rlogin XXX.XXX.XXX.XXX Password: Last login: Wed Aug 13 03:22:07 2019 from YYY.YYY.YYY.YYY Oracle...

needs-more-info

I recently added many more API tests of the `fmtre()` and `fmtmatch()` functions. Primarily to see if I could improve test coverage to acceptable levels. However, the API tests don't...

bug

While working on PR #1389 (Issue #570) I found there was one test that failed with that pull-request for no discernible reason: https://github.com/att/ast/blob/a9d4bb0064df247b20f604626b5b58698079bd4d/src/cmd/ksh93/tests/path.sh#L380-L391 The `PATH` var has to be modified...

bug

The 'subshell' test fails on Gentoo Linux. [system-info.txt](https://github.com/att/ast/files/3563571/system-info.txt) ``` 268/287 subshell FAIL 1.03 s (exit status 1) --- command --- TEST_ROOT='/x/portage/app-shells/ksh-2020.0.0_beta1/work/ksh-2020.0.0-beta1/src/cmd/ksh93/tests' SHELL='/x/portage/app-shells/ksh-2020.0.0_beta1/work/ksh-2020.0.0_beta1-build/src/cmd/ksh93/ksh' LD_LIBRARY_PATH='/x/portage/app-shells/ksh-2020.0.0_beta1/work/ksh-2020.0.0_beta1-build/src/lib/libast:/x/portage/app-shells/ksh-2020.0.0_beta1/work/ksh-2020.0.0_beta1-build/src/lib/libcmd:/x/portage/app-shells/ksh-2020.0.0_beta1/work/ksh-2020.0.0_beta1-build/src/lib/libdll' LIBSAMPLE_PATH='/x/portage/app-shells/ksh-2020.0.0_beta1/work/ksh-2020.0.0_beta1-build/src/lib/libdll/libsample.so' SRC_ROOT='/x/portage/app-shells/ksh-2020.0.0_beta1/work/ksh-2020.0.0-beta1' /x/portage/app-shells/ksh-2020.0.0_beta1/work/ksh-2020.0.0_beta1-build/src/cmd/ksh93/ksh /x/portage/app-shells/ksh-2020.0.0_beta1/work/ksh-2020.0.0-beta1/src/cmd/ksh93/tests/util/run_test.sh subshell --- stdout...

bug