Permalink
Please sign in to comment.
Browse files
Some portability fixes (#14)
- include correct regex header on FreeBSD - use #!/usr/bin/env instead of hardcoded Linux paths - find shells with which
- Loading branch information...
Showing
with
233 additions
and 224 deletions.
- +1 −1 asdl/arith_ast.py
- +1 −1 asdl/arith_ast_test.py
- +1 −1 asdl/arith_parse.py
- +1 −1 asdl/arith_parse_test.py
- +1 −1 asdl/asdl_demo.py
- +1 −1 asdl/encode_test.py
- +1 −1 asdl/gen_cpp.py
- +1 −1 asdl/py_meta.py
- +1 −1 asdl/py_meta_test.py
- +1 −1 asdl/run.sh
- +1 −1 asdl/tdop.py
- +1 −1 benchmarks/awk-python.sh
- +1 −1 benchmarks/startup.sh
- +1 −1 bin/oil.py
- +1 −1 bin/opy_.py
- +1 −1 build/actions.sh
- +1 −1 build/app_deps.py
- +1 −1 build/app_deps_test.py
- +1 −1 build/c_module_srcs.py
- +1 −1 build/c_module_toc.py
- +1 −1 build/common.sh
- +1 −1 build/compile.sh
- +1 −1 build/config1.sh
- +1 −1 build/make_zip.py
- +1 −1 build/prepare.sh
- +2 −2 build/pylibc.sh
- +1 −1 build/runpy_deps.py
- +1 −1 build/setup.py
- +1 −1 build/stats.sh
- +1 −1 build/test.sh
- +1 −1 build/testdata/future_import.py
- +1 −1 build/testdata/hello.py
- +1 −1 build/testdata/lib.py
- +1 −1 core/args.py
- +1 −1 core/args_test.py
- +1 −1 core/braces.py
- +1 −1 core/braces_test.py
- +1 −1 core/builtin.py
- +1 −1 core/cmd_exec.py
- +1 −1 core/cmd_exec_test.py
- +1 −1 core/completion.py
- +1 −1 core/completion_test.py
- +1 −1 core/expr_eval.py
- +1 −1 core/glob_.py
- +1 −1 core/glob_test.py
- +1 −1 core/id_kind.py
- +1 −1 core/id_kind_gen.py
- +1 −1 core/id_kind_test.py
- +1 −1 core/lexer.py
- +1 −1 core/lexer_test.py
- +1 −1 core/process.py
- +1 −1 core/process_test.py
- +1 −1 core/reader.py
- +1 −1 core/runtime.py
- +1 −1 core/shell_test.py
- +1 −1 core/state.py
- +1 −1 core/state_test.py
- +1 −1 core/tdop.py
- +1 −1 core/test_lib.py
- +1 −1 core/ui.py
- +1 −1 core/util.py
- +1 −1 core/util_test.py
- +1 −1 core/word_eval_test.py
- +1 −1 core/word_test.py
- +1 −1 deps.sh
- +5 −1 native/libc.c
- +1 −1 native/libc_test.py
- +1 −1 opy/build.sh
- +1 −1 opy/byterun/run.sh
- +1 −1 opy/byterun/test_basic.py
- +1 −1 opy/byterun/test_exceptions.py
- +1 −1 opy/byterun/test_functions.py
- +1 −1 opy/byterun/test_with.py
- +1 −1 opy/common.sh
- +1 −1 opy/compare.sh
- +1 −1 opy/compiler2/symbols_test.py
- +1 −1 opy/misc/ccompile.py
- +1 −1 opy/misc/determinism.py
- +1 −1 opy/misc/pgen_ast.py
- +1 −1 opy/misc/py_ast.py
- +1 −1 opy/misc/stdlib_compile.py
- +1 −1 opy/opy_main.py
- +1 −1 opy/pgen2/pgen.py
- +1 −1 opy/run.sh
- +1 −1 opy/smoke.sh
- +1 −1 opy/tests/genexpr.py
- +1 −1 opy/tests/genexpr_simple.py
- +1 −1 opy/tools/compile.py
- +1 −1 opy/tools/demo.py
- +1 −1 opy/tools/dumppyc.py
- +1 −1 opy/tools/regrtest.py
- +1 −1 opy/util_opy.py
- +1 −1 osh/arith_parse.py
- +1 −1 osh/arith_parse_test.py
- +1 −1 osh/ast_.py
- +1 −1 osh/bool_parse.py
- +1 −1 osh/bool_parse_test.py
- +1 −1 osh/cmd_parse.py
- +1 −1 osh/cmd_parse_test.py
- +1 −1 osh/lex_test.py
- +1 −1 osh/word_parse.py
- +1 −1 osh/word_parse_test.py
- +1 −1 scripts/count.sh
- +1 −1 scripts/refactor.sh
- +1 −1 scripts/run.sh
- +1 −1 spec/01-bad-func.sh
- +1 −1 spec/02-bad-func.sh
- +1 −1 spec/03-glob.sh
- +1 −1 spec/04-case-in-subshell.sh
- +1 −1 spec/05-unterminated-single.sh
- +1 −1 spec/06-unterminated-double-long.sh
- +1 −1 spec/06-unterminated-double.sh
- +1 −1 spec/07-unterminated-here-doc.sh
- +1 −1 spec/08-dollar0.sh
- +1 −1 spec/09-here-doc-compound.sh
- +1 −1 spec/09-here-doc.sh
- +1 −1 spec/10-async.sh
- +1 −1 spec/11-brace-redirect.sh
- +1 −1 spec/12-command-sub-2.sh
- +1 −1 spec/12-command-sub.sh
- +1 −1 spec/13-big-here-doc.sh
- +1 −1 spec/14-parse-order.sh
- +1 −1 spec/15-subshell-error.sh
- +1 −1 spec/16-errexit.sh
- +1 −1 spec/append.test.sh
- +1 −1 spec/arith-context.test.sh
- +1 −1 spec/arith.test.sh
- +1 −1 spec/array-compat.test.sh
- +1 −1 spec/array.test.sh
- +1 −1 spec/assign.test.sh
- +1 −1 spec/assoc-zsh.test.sh
- +1 −1 spec/assoc.test.sh
- +1 −1 spec/background-status.sh
- +1 −1 spec/background.test.sh
- +1 −1 spec/bin/argv.py
- +1 −1 spec/bin/printenv.py
- +1 −1 spec/bin/read_from_fd.py
- +1 −1 spec/bin/show_fd_table.py
- +1 −1 spec/bin/stdout_stderr.py
- +1 −1 spec/blog1.test.sh
- +1 −1 spec/brace-expansion.test.sh
- +1 −1 spec/bugs.test.sh
- +1 −1 spec/builtin-vars.test.sh
- +1 −1 spec/builtins-special.test.sh
- +1 −1 spec/builtins.test.sh
- +1 −1 spec/case_.test.sh
- +1 −1 spec/command-parsing.test.sh
- +1 −1 spec/command-sub.test.sh
- +1 −1 spec/command_.test.sh
- +1 −1 spec/comments.sh
- +1 −1 spec/comments.test.sh
- +1 −1 spec/coproc.py
- +1 −1 spec/coproc.sh
- +1 −1 spec/dbracket.test.sh
- +1 −1 spec/declare.sh
- +1 −1 spec/dparen.test.sh
- +1 −1 spec/echo.sh
- +1 −1 spec/errexit.sh
- +1 −1 spec/explore-parsing.test.sh
- +1 −1 spec/export.sh
- +1 −1 spec/extended-glob.test.sh
- +1 −1 spec/for-expr.test.sh
- +1 −1 spec/func-parsing.test.sh
- +1 −1 spec/func.test.sh
- +1 −1 spec/glob.test.sh
- +1 −1 spec/here-doc.test.sh
- +1 −1 spec/history.sh
- +1 −1 spec/if_.test.sh
- +1 −1 spec/let.test.sh
- +1 −1 spec/line-number.sh
- +1 −1 spec/loop.test.sh
- +1 −1 spec/osh-only.test.sh
- +1 −1 spec/parse-errors.test.sh
- +1 −1 spec/pipeline.test.sh
- +1 −1 spec/posix.test.sh
- +1 −1 spec/process-sub.test.sh
- +1 −1 spec/quote.test.sh
- +1 −1 spec/readonly.sh
- +1 −1 spec/redirect.test.sh
- +1 −1 spec/regex.test.sh
- +1 −1 spec/runtime-errors.sh
- +1 −1 spec/scope.sh
- +1 −1 spec/sh-options.test.sh
- +1 −1 spec/shell-grammar.test.sh
- +1 −1 spec/show-fd-table.sh
- +1 −1 spec/smoke.test.sh
- +1 −1 spec/special-vars.test.sh
- +1 −1 spec/subshell.test.sh
- +1 −1 spec/test-builtin.test.sh
- +1 −1 spec/tilde.test.sh
- +1 −1 spec/unicode.sh
- +1 −1 spec/var-num.test.sh
- +1 −1 spec/var-op-other.test.sh
- +1 −1 spec/var-op-strip.test.sh
- +1 −1 spec/var-op-test.test.sh
- +1 −1 spec/var-ref.test.sh
- +1 −1 spec/var-sub-quote.test.sh
- +1 −1 spec/var-sub.test.sh
- +1 −1 spec/word-eval.test.sh
- +1 −1 spec/word-split.test.sh
- +1 −1 spec/xtrace.sh
- +1 −1 test/gold.sh
- +1 −1 test/lint.sh
- +1 −1 test/osh2oil.sh
- +1 −1 test/publish.sh
- +1 −1 test/sh_spec.py
- +1 −1 test/sh_spec_test.py
- +1 −1 test/smoke.sh
- +1 −1 test/spec-runner.sh
- +15 −10 test/spec.sh
- +1 −1 test/unit.sh
- +1 −1 test/wild.sh
- +1 −1 test/wild2.sh
- +1 −1 tools/osh2oil_test.py
Oops, something went wrong.
0 comments on commit
7ad8ebe