| 1 | #!/usr/bin/env bash
|
| 2 | #
|
| 3 | # Usage:
|
| 4 | # test/spec.sh <function name>
|
| 5 |
|
| 6 | set -o nounset
|
| 7 | set -o pipefail
|
| 8 | set -o errexit
|
| 9 | shopt -s strict:all 2>/dev/null || true # dogfood for OSH
|
| 10 |
|
| 11 | REPO_ROOT=$(cd "$(dirname $0)/.."; pwd)
|
| 12 |
|
| 13 | source test/common.sh
|
| 14 | source test/spec-common.sh
|
| 15 | source devtools/run-task.sh
|
| 16 |
|
| 17 | if test -z "${IN_NIX_SHELL:-}"; then
|
| 18 | source build/dev-shell.sh # to run 'dash', etc.
|
| 19 | fi
|
| 20 |
|
| 21 | # TODO: Just use 'dash bash' and $PATH
|
| 22 | readonly DASH=dash
|
| 23 | readonly BASH=bash
|
| 24 | readonly MKSH=mksh
|
| 25 | readonly ZSH=zsh
|
| 26 | readonly BUSYBOX_ASH=ash
|
| 27 |
|
| 28 | # ash and dash are similar, so not including ash by default. zsh is not quite
|
| 29 | # POSIX.
|
| 30 | readonly REF_SHELLS=($DASH $BASH $MKSH)
|
| 31 |
|
| 32 | check-survey-shells() {
|
| 33 | ### Make sure bash, zsh, OSH, etc. exist
|
| 34 |
|
| 35 | # Note: yash isn't here, but it is used in a couple tests
|
| 36 |
|
| 37 | test/spec-runner.sh shell-sanity-check "${REF_SHELLS[@]}" $ZSH $BUSYBOX_ASH $OSH_LIST
|
| 38 | }
|
| 39 |
|
| 40 | # TODO: remove this stub after we hollow out this file
|
| 41 |
|
| 42 | run-file() { test/spec-py.sh run-file "$@"; }
|
| 43 |
|
| 44 | #
|
| 45 | # Misc
|
| 46 | #
|
| 47 |
|
| 48 | # Really what I want is enter(func) and exit(func), and filter by regex?
|
| 49 | trace-var-sub() {
|
| 50 | local out=_tmp/coverage
|
| 51 | mkdir -p $out
|
| 52 |
|
| 53 | # This creates *.cover files, with line counts.
|
| 54 | #python -m trace --count -C $out \
|
| 55 |
|
| 56 | # This prints trace with line numbers to stdout.
|
| 57 | #python -m trace --trace -C $out \
|
| 58 | PYTHONPATH=. python -m trace --trackcalls -C $out \
|
| 59 | test/sh_spec.py spec/var-sub.test.sh $DASH $BASH "$@"
|
| 60 |
|
| 61 | ls -l $out
|
| 62 | head $out/*.cover
|
| 63 | }
|
| 64 |
|
| 65 | #
|
| 66 | # Individual tests.
|
| 67 | #
|
| 68 | # We configure the shells they run on and the number of allowed failures (to
|
| 69 | # prevent regressions.)
|
| 70 | #
|
| 71 |
|
| 72 | interactive-parse() {
|
| 73 | run-file interactive-parse "$@"
|
| 74 | }
|
| 75 |
|
| 76 | smoke() {
|
| 77 | run-file smoke "$@"
|
| 78 | }
|
| 79 |
|
| 80 | interactive() {
|
| 81 | run-file interactive "$@"
|
| 82 | }
|
| 83 |
|
| 84 | prompt() {
|
| 85 | run-file prompt "$@"
|
| 86 | }
|
| 87 |
|
| 88 | bugs() {
|
| 89 | run-file bugs "$@"
|
| 90 | }
|
| 91 |
|
| 92 | TODO-deprecate() {
|
| 93 | run-file TODO-deprecate "$@"
|
| 94 | }
|
| 95 |
|
| 96 | blog1() {
|
| 97 | sh-spec spec/blog1.test.sh \
|
| 98 | ${REF_SHELLS[@]} $ZSH $OSH_LIST "$@"
|
| 99 | }
|
| 100 |
|
| 101 | blog2() {
|
| 102 | run-file blog2 "$@"
|
| 103 | }
|
| 104 |
|
| 105 | blog-other1() {
|
| 106 | sh-spec spec/blog-other1.test.sh \
|
| 107 | ${REF_SHELLS[@]} $ZSH $OSH_LIST "$@"
|
| 108 | }
|
| 109 |
|
| 110 | alias() {
|
| 111 | run-file alias "$@"
|
| 112 | }
|
| 113 |
|
| 114 | comments() {
|
| 115 | sh-spec spec/comments.test.sh ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 116 | }
|
| 117 |
|
| 118 | word-split() {
|
| 119 | run-file word-split "$@"
|
| 120 | }
|
| 121 |
|
| 122 | word-eval() {
|
| 123 | sh-spec spec/word-eval.test.sh \
|
| 124 | ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 125 | }
|
| 126 |
|
| 127 | # These cases apply to many shells.
|
| 128 | assign() {
|
| 129 | run-file assign "$@"
|
| 130 | }
|
| 131 |
|
| 132 | # These cases apply to a few shells.
|
| 133 | assign-extended() {
|
| 134 | run-file assign-extended "$@"
|
| 135 | }
|
| 136 |
|
| 137 | # Corner cases that OSH doesn't handle
|
| 138 | assign-deferred() {
|
| 139 | sh-spec spec/assign-deferred.test.sh \
|
| 140 | $BASH $MKSH "$@"
|
| 141 | }
|
| 142 |
|
| 143 | # These test associative arrays
|
| 144 | assign-dialects() {
|
| 145 | run-file assign-dialects "$@"
|
| 146 | }
|
| 147 |
|
| 148 | background() {
|
| 149 | run-file background "$@"
|
| 150 | }
|
| 151 |
|
| 152 | subshell() {
|
| 153 | sh-spec spec/subshell.test.sh \
|
| 154 | ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 155 | }
|
| 156 |
|
| 157 | quote() {
|
| 158 | sh-spec spec/quote.test.sh \
|
| 159 | ${REF_SHELLS[@]} $BUSYBOX_ASH $OSH_LIST "$@"
|
| 160 | }
|
| 161 |
|
| 162 | unicode() {
|
| 163 | run-file unicode "$@"
|
| 164 | }
|
| 165 |
|
| 166 | loop() {
|
| 167 | run-file loop "$@"
|
| 168 | }
|
| 169 |
|
| 170 | case_() {
|
| 171 | run-file case_ "$@"
|
| 172 | }
|
| 173 |
|
| 174 | if_() {
|
| 175 | sh-spec spec/if_.test.sh \
|
| 176 | ${REF_SHELLS[@]} $ZSH $OSH_LIST "$@"
|
| 177 | }
|
| 178 |
|
| 179 | builtin-misc() {
|
| 180 | run-file builtin-misc "$@"
|
| 181 | }
|
| 182 |
|
| 183 | builtin-process() {
|
| 184 | run-file builtin-process "$@"
|
| 185 | }
|
| 186 |
|
| 187 | builtin-cd() {
|
| 188 | run-file builtin-cd "$@"
|
| 189 | }
|
| 190 |
|
| 191 | builtin-eval-source() {
|
| 192 | run-file builtin-eval-source "$@"
|
| 193 | }
|
| 194 |
|
| 195 | builtin-echo() {
|
| 196 | run-file builtin-echo "$@"
|
| 197 | }
|
| 198 |
|
| 199 | builtin-read() {
|
| 200 | run-file builtin-read "$@"
|
| 201 | }
|
| 202 |
|
| 203 | nul-bytes() {
|
| 204 | run-file nul-bytes "$@"
|
| 205 | }
|
| 206 |
|
| 207 | whitespace() {
|
| 208 | run-file whitespace "$@"
|
| 209 | }
|
| 210 |
|
| 211 | # Special bash printf things like -v and %q. Portable stuff goes in builtin-io.
|
| 212 | builtin-printf() {
|
| 213 | run-file builtin-printf "$@"
|
| 214 | }
|
| 215 |
|
| 216 | builtin-meta() {
|
| 217 | run-file builtin-meta "$@"
|
| 218 | }
|
| 219 |
|
| 220 | builtin-history() {
|
| 221 | run-file builtin-history "$@"
|
| 222 | }
|
| 223 |
|
| 224 | # dash and mksh don't implement 'dirs'
|
| 225 | builtin-dirs() {
|
| 226 | sh-spec spec/builtin-dirs.test.sh \
|
| 227 | $BASH $ZSH $OSH_LIST "$@"
|
| 228 | }
|
| 229 |
|
| 230 | builtin-vars() {
|
| 231 | run-file builtin-vars "$@"
|
| 232 | }
|
| 233 |
|
| 234 | builtin-getopts() {
|
| 235 | run-file builtin-getopts "$@"
|
| 236 | }
|
| 237 |
|
| 238 | builtin-bracket() {
|
| 239 | run-file builtin-bracket "$@"
|
| 240 | }
|
| 241 |
|
| 242 | builtin-trap() {
|
| 243 | run-file builtin-trap "$@"
|
| 244 | }
|
| 245 |
|
| 246 | builtin-trap-err() {
|
| 247 | run-file builtin-trap-err "$@"
|
| 248 | }
|
| 249 |
|
| 250 | builtin-trap-bash() {
|
| 251 | run-file builtin-trap-bash "$@"
|
| 252 | }
|
| 253 |
|
| 254 | builtin-shopt-bash() {
|
| 255 | run-file builtin-shopt-bash "$@"
|
| 256 | }
|
| 257 |
|
| 258 | # Bash implements type -t, but no other shell does. For Nix.
|
| 259 | # zsh/mksh/dash don't have the 'help' builtin.
|
| 260 | builtin-bash() {
|
| 261 | run-file builtin-bash "$@"
|
| 262 | }
|
| 263 |
|
| 264 | builtin-type() {
|
| 265 | run-file builtin-type "$@"
|
| 266 | }
|
| 267 |
|
| 268 | builtin-type-bash() {
|
| 269 | run-file builtin-type-bash "$@"
|
| 270 | }
|
| 271 |
|
| 272 | vars-bash() {
|
| 273 | run-file vars-bash "$@"
|
| 274 | }
|
| 275 |
|
| 276 | vars-special() {
|
| 277 | run-file vars-special "$@"
|
| 278 | }
|
| 279 |
|
| 280 | builtin-completion() {
|
| 281 | run-file builtin-completion "$@"
|
| 282 | }
|
| 283 |
|
| 284 | builtin-special() {
|
| 285 | run-file builtin-special "$@"
|
| 286 | }
|
| 287 |
|
| 288 | builtin-times() {
|
| 289 | sh-spec spec/builtin-times.test.sh $BASH $ZSH $OSH_LIST "$@"
|
| 290 | }
|
| 291 |
|
| 292 | command-parsing() {
|
| 293 | sh-spec spec/command-parsing.test.sh ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 294 | }
|
| 295 |
|
| 296 | func-parsing() {
|
| 297 | sh-spec spec/func-parsing.test.sh ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 298 | }
|
| 299 |
|
| 300 | sh-func() {
|
| 301 | run-file sh-func "$@"
|
| 302 | }
|
| 303 |
|
| 304 | glob() {
|
| 305 | run-file glob "$@"
|
| 306 | }
|
| 307 |
|
| 308 | globignore() {
|
| 309 | run-file globignore "$@"
|
| 310 | }
|
| 311 |
|
| 312 | arith() {
|
| 313 | run-file arith "$@"
|
| 314 | }
|
| 315 |
|
| 316 | command-sub() {
|
| 317 | sh-spec spec/command-sub.test.sh \
|
| 318 | ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 319 | }
|
| 320 |
|
| 321 | command_() {
|
| 322 | sh-spec spec/command_.test.sh \
|
| 323 | ${REF_SHELLS[@]} $ZSH $OSH_LIST "$@"
|
| 324 | }
|
| 325 |
|
| 326 | pipeline() {
|
| 327 | sh-spec spec/pipeline.test.sh \
|
| 328 | ${REF_SHELLS[@]} $ZSH $OSH_LIST "$@"
|
| 329 | }
|
| 330 |
|
| 331 | explore-parsing() {
|
| 332 | sh-spec spec/explore-parsing.test.sh \
|
| 333 | ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 334 | }
|
| 335 |
|
| 336 | parse-errors() {
|
| 337 | run-file parse-errors "$@"
|
| 338 | }
|
| 339 |
|
| 340 | here-doc() {
|
| 341 | # NOTE: The last two tests, 31 and 32, have different behavior on my Ubuntu
|
| 342 | # and Debian machines.
|
| 343 | # - On Ubuntu, read_from_fd.py fails with Errno 9 -- bad file descriptor.
|
| 344 | # - On Debian, the whole process hangs.
|
| 345 | # Is this due to Python 3.2 vs 3.4? Either way osh doesn't implement the
|
| 346 | # functionality, so it's probably best to just implement it.
|
| 347 | sh-spec spec/here-doc.test.sh --range 0-31 \
|
| 348 | ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 349 | }
|
| 350 |
|
| 351 | redirect() {
|
| 352 | run-file redirect "$@"
|
| 353 | }
|
| 354 |
|
| 355 | redirect-command() {
|
| 356 | run-file redirect-command "$@"
|
| 357 | }
|
| 358 |
|
| 359 | redirect-multi() {
|
| 360 | run-file redirect-multi "$@"
|
| 361 | }
|
| 362 |
|
| 363 | posix() {
|
| 364 | sh-spec spec/posix.test.sh \
|
| 365 | ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 366 | }
|
| 367 |
|
| 368 | introspect() {
|
| 369 | run-file introspect "$@"
|
| 370 | }
|
| 371 |
|
| 372 | tilde() {
|
| 373 | run-file tilde "$@"
|
| 374 | }
|
| 375 |
|
| 376 | var-op-test() {
|
| 377 | run-file var-op-test "$@"
|
| 378 | }
|
| 379 |
|
| 380 | var-op-len() {
|
| 381 | sh-spec spec/var-op-len.test.sh \
|
| 382 | ${REF_SHELLS[@]} $ZSH $OSH_LIST "$@"
|
| 383 | }
|
| 384 |
|
| 385 | var-op-patsub() {
|
| 386 | # 1 unicode failure, and [^]] which is a parsing divergence
|
| 387 | run-file var-op-patsub "$@"
|
| 388 | }
|
| 389 |
|
| 390 | var-op-slice() {
|
| 391 | run-file var-op-slice "$@"
|
| 392 | }
|
| 393 |
|
| 394 | var-op-bash() {
|
| 395 | run-file var-op-bash "$@"
|
| 396 | }
|
| 397 |
|
| 398 | var-op-strip() {
|
| 399 | sh-spec spec/var-op-strip.test.sh \
|
| 400 | ${REF_SHELLS[@]} $ZSH $BUSYBOX_ASH $OSH_LIST "$@"
|
| 401 | }
|
| 402 |
|
| 403 | var-sub() {
|
| 404 | # NOTE: ZSH has interesting behavior, like echo hi > "$@" can write to TWO
|
| 405 | # FILES! But ultimately we don't really care, so I disabled it.
|
| 406 | sh-spec spec/var-sub.test.sh \
|
| 407 | ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 408 | }
|
| 409 |
|
| 410 | var-num() {
|
| 411 | run-file var-num "$@"
|
| 412 | }
|
| 413 |
|
| 414 | var-sub-quote() {
|
| 415 | sh-spec spec/var-sub-quote.test.sh \
|
| 416 | ${REF_SHELLS[@]} $OSH_LIST "$@"
|
| 417 | }
|
| 418 |
|
| 419 | sh-usage() {
|
| 420 | run-file sh-usage "$@"
|
| 421 | }
|
| 422 |
|
| 423 | sh-options() {
|
| 424 | run-file sh-options "$@"
|
| 425 | }
|
| 426 |
|
| 427 | xtrace() {
|
| 428 | run-file xtrace "$@"
|
| 429 | }
|
| 430 |
|
| 431 | strict-options() {
|
| 432 | run-file strict-options "$@"
|
| 433 | }
|
| 434 |
|
| 435 | exit-status() {
|
| 436 | run-file exit-status "$@"
|
| 437 | }
|
| 438 |
|
| 439 | errexit() {
|
| 440 | run-file errexit "$@"
|
| 441 | }
|
| 442 |
|
| 443 | errexit-osh() {
|
| 444 | run-file errexit-osh "$@"
|
| 445 | }
|
| 446 |
|
| 447 | fatal-errors() {
|
| 448 | sh-spec spec/fatal-errors.test.sh \
|
| 449 | ${REF_SHELLS[@]} $ZSH $OSH_LIST "$@"
|
| 450 | }
|
| 451 |
|
| 452 | #
|
| 453 | # Non-POSIX extensions: arrays, brace expansion, [[, ((, etc.
|
| 454 | #
|
| 455 |
|
| 456 | # There as many non-POSIX arithmetic contexts.
|
| 457 | arith-context() {
|
| 458 | run-file arith-context "$@"
|
| 459 | }
|
| 460 |
|
| 461 | array() {
|
| 462 | run-file array "$@"
|
| 463 | }
|
| 464 |
|
| 465 | array-compat() {
|
| 466 | run-file array-compat "$@"
|
| 467 | }
|
| 468 |
|
| 469 | type-compat() {
|
| 470 | run-file type-compat "$@"
|
| 471 | }
|
| 472 |
|
| 473 | # += is not POSIX and not in dash.
|
| 474 | append() {
|
| 475 | run-file append "$@"
|
| 476 | }
|
| 477 |
|
| 478 | # associative array -- mksh and zsh implement different associative arrays.
|
| 479 | assoc() {
|
| 480 | run-file assoc "$@"
|
| 481 | }
|
| 482 |
|
| 483 | # ZSH also has associative arrays
|
| 484 | assoc-zsh() {
|
| 485 | sh-spec spec/assoc-zsh.test.sh $ZSH "$@"
|
| 486 | }
|
| 487 |
|
| 488 | dbracket() {
|
| 489 | run-file dbracket "$@"
|
| 490 | }
|
| 491 |
|
| 492 | dparen() {
|
| 493 | run-file dparen "$@"
|
| 494 | }
|
| 495 |
|
| 496 | brace-expansion() {
|
| 497 | run-file brace-expansion "$@"
|
| 498 | }
|
| 499 |
|
| 500 | regex() {
|
| 501 | run-file regex "$@"
|
| 502 | }
|
| 503 |
|
| 504 | process-sub() {
|
| 505 | run-file process-sub "$@"
|
| 506 | }
|
| 507 |
|
| 508 | # This does file system globbing
|
| 509 | extglob-files() {
|
| 510 | run-file extglob-files "$@"
|
| 511 | }
|
| 512 |
|
| 513 | # This does string matching.
|
| 514 | extglob-match() {
|
| 515 | sh-spec spec/extglob-match.test.sh \
|
| 516 | $BASH $MKSH $OSH_LIST "$@"
|
| 517 | }
|
| 518 |
|
| 519 | nocasematch-match() {
|
| 520 | run-file nocasematch-match "$@"
|
| 521 | }
|
| 522 |
|
| 523 | # ${!var} syntax -- oil should replace this with associative arrays.
|
| 524 | # mksh has completely different behavior for this syntax. Not worth testing.
|
| 525 | var-ref() {
|
| 526 | run-file var-ref "$@"
|
| 527 | }
|
| 528 |
|
| 529 | nameref() {
|
| 530 | ### declare -n / local -n
|
| 531 | run-file nameref "$@"
|
| 532 | }
|
| 533 |
|
| 534 | let() {
|
| 535 | sh-spec spec/let.test.sh $BASH $MKSH $ZSH "$@"
|
| 536 | }
|
| 537 |
|
| 538 | for-expr() {
|
| 539 | run-file for-expr "$@"
|
| 540 | }
|
| 541 |
|
| 542 | empty-bodies() {
|
| 543 | sh-spec spec/empty-bodies.test.sh "${REF_SHELLS[@]}" $ZSH $OSH_LIST "$@"
|
| 544 | }
|
| 545 |
|
| 546 | # TODO: This is for the ANTLR grammars, in the oil-sketch repo.
|
| 547 | # osh has infinite loop?
|
| 548 | shell-grammar() {
|
| 549 | sh-spec spec/shell-grammar.test.sh $BASH $MKSH $ZSH "$@"
|
| 550 | }
|
| 551 |
|
| 552 | serialize() {
|
| 553 | run-file serialize "$@"
|
| 554 | }
|
| 555 |
|
| 556 | #
|
| 557 | # Smoosh
|
| 558 | #
|
| 559 |
|
| 560 | readonly SMOOSH_REPO=~/git/languages/smoosh
|
| 561 |
|
| 562 | sh-spec-smoosh-env() {
|
| 563 | local test_file=$1
|
| 564 | shift
|
| 565 |
|
| 566 | # - smoosh tests use $TEST_SHELL instead of $SH
|
| 567 | # - cd $TMP to avoid littering repo
|
| 568 | # - pass -o posix
|
| 569 | # - timeout of 1 second
|
| 570 | # - Some tests in smoosh use $HOME and $LOGNAME
|
| 571 |
|
| 572 | sh-spec $test_file \
|
| 573 | --sh-env-var-name TEST_SHELL \
|
| 574 | --posix \
|
| 575 | --env-pair "TEST_UTIL=$SMOOSH_REPO/tests/util" \
|
| 576 | --env-pair "LOGNAME=$LOGNAME" \
|
| 577 | --env-pair "HOME=$HOME" \
|
| 578 | --timeout 1 \
|
| 579 | --oils-bin-dir $REPO_ROOT/bin \
|
| 580 | --compare-shells \
|
| 581 | "$@"
|
| 582 | }
|
| 583 |
|
| 584 | # For speed, only run with one copy of OSH.
|
| 585 | readonly smoosh_osh_list=$OSH_CPYTHON
|
| 586 |
|
| 587 | smoosh() {
|
| 588 | ### Run case smoosh from the console
|
| 589 |
|
| 590 | # TODO: Use --oils-bin-dir
|
| 591 | # our_shells, etc.
|
| 592 |
|
| 593 | sh-spec-smoosh-env _tmp/smoosh.test.sh \
|
| 594 | ${REF_SHELLS[@]} $smoosh_osh_list \
|
| 595 | "$@"
|
| 596 | }
|
| 597 |
|
| 598 | smoosh-hang() {
|
| 599 | ### Run case smoosh-hang from the console
|
| 600 |
|
| 601 | # Need the smoosh timeout tool to run correctly.
|
| 602 | sh-spec-smoosh-env _tmp/smoosh-hang.test.sh \
|
| 603 | --timeout-bin "$SMOOSH_REPO/tests/util/timeout" \
|
| 604 | --timeout 1 \
|
| 605 | "$@"
|
| 606 | }
|
| 607 |
|
| 608 | _one-html() {
|
| 609 | local spec_name=$1
|
| 610 | shift
|
| 611 |
|
| 612 | local out_dir=_tmp/spec/smoosh
|
| 613 | local tmp_dir=_tmp/src-smoosh
|
| 614 | mkdir -p $out_dir $out_dir
|
| 615 |
|
| 616 | doctools/src_tree.py smoosh-file \
|
| 617 | _tmp/$spec_name.test.sh \
|
| 618 | $out_dir/$spec_name.test.html
|
| 619 |
|
| 620 | local out=$out_dir/${spec_name}.html
|
| 621 | set +o errexit
|
| 622 | # Shell function is smoosh or smoosh-hang
|
| 623 | time $spec_name --format html "$@" > $out
|
| 624 | set -o errexit
|
| 625 |
|
| 626 | echo
|
| 627 | echo "Wrote $out"
|
| 628 |
|
| 629 | # NOTE: This IGNORES the exit status.
|
| 630 | }
|
| 631 |
|
| 632 | # TODO:
|
| 633 | # - Put these tests in the CI
|
| 634 | # - Import smoosh spec tests into the repo, with 'test/smoosh.sh'
|
| 635 |
|
| 636 | smoosh-html() {
|
| 637 | ### Run by devtools/release.sh
|
| 638 | _one-html smoosh "$@"
|
| 639 | }
|
| 640 |
|
| 641 | smoosh-hang-html() {
|
| 642 | ### Run by devtools/release.sh
|
| 643 | _one-html smoosh-hang "$@"
|
| 644 | }
|
| 645 |
|
| 646 | html-demo() {
|
| 647 | ### Test for --format html
|
| 648 |
|
| 649 | local out=_tmp/spec/demo.html
|
| 650 | builtin-special --format html "$@" > $out
|
| 651 |
|
| 652 | echo
|
| 653 | echo "Wrote $out"
|
| 654 | }
|
| 655 |
|
| 656 | #
|
| 657 | # Hay is part of the YSH suite
|
| 658 | #
|
| 659 |
|
| 660 | hay() {
|
| 661 | run-file hay "$@"
|
| 662 | }
|
| 663 |
|
| 664 | hay-isolation() {
|
| 665 | run-file hay-isolation "$@"
|
| 666 | }
|
| 667 |
|
| 668 | hay-meta() {
|
| 669 | run-file hay-meta "$@"
|
| 670 | }
|
| 671 |
|
| 672 | #
|
| 673 | # YSH
|
| 674 | #
|
| 675 |
|
| 676 | ysh-convert() {
|
| 677 | run-file ysh-convert "$@"
|
| 678 | }
|
| 679 |
|
| 680 | ysh-completion() {
|
| 681 | run-file ysh-completion "$@"
|
| 682 | }
|
| 683 |
|
| 684 | ysh-stdlib() {
|
| 685 | run-file ysh-stdlib "$@"
|
| 686 | }
|
| 687 |
|
| 688 | ysh-stdlib-2() {
|
| 689 | run-file ysh-stdlib-2 "$@"
|
| 690 | }
|
| 691 |
|
| 692 | ysh-stdlib-args() {
|
| 693 | run-file ysh-stdlib-args "$@"
|
| 694 | }
|
| 695 |
|
| 696 | ysh-stdlib-testing() {
|
| 697 | run-file ysh-stdlib-testing "$@"
|
| 698 | }
|
| 699 |
|
| 700 | ysh-stdlib-synch() {
|
| 701 | run-file ysh-stdlib-synch "$@"
|
| 702 | }
|
| 703 |
|
| 704 | ysh-source() {
|
| 705 | run-file ysh-source "$@"
|
| 706 | }
|
| 707 |
|
| 708 | ysh-usage() {
|
| 709 | run-file ysh-usage "$@"
|
| 710 | }
|
| 711 |
|
| 712 | ysh-unicode() {
|
| 713 | run-file ysh-unicode "$@"
|
| 714 | }
|
| 715 |
|
| 716 | ysh-bin() {
|
| 717 | run-file ysh-bin "$@"
|
| 718 | }
|
| 719 |
|
| 720 | ysh-dict() {
|
| 721 | run-file ysh-dict "$@"
|
| 722 | }
|
| 723 |
|
| 724 | ysh-list() {
|
| 725 | run-file ysh-list "$@"
|
| 726 | }
|
| 727 |
|
| 728 | ysh-place() {
|
| 729 | run-file ysh-place "$@"
|
| 730 | }
|
| 731 |
|
| 732 | ysh-prompt() {
|
| 733 | run-file ysh-prompt "$@"
|
| 734 | }
|
| 735 |
|
| 736 | ysh-assign() {
|
| 737 | run-file ysh-assign "$@"
|
| 738 | }
|
| 739 |
|
| 740 | ysh-augmented() {
|
| 741 | run-file ysh-augmented "$@"
|
| 742 | }
|
| 743 |
|
| 744 | ysh-blocks() {
|
| 745 | run-file ysh-blocks "$@"
|
| 746 | }
|
| 747 |
|
| 748 | ysh-bugs() {
|
| 749 | run-file ysh-bugs "$@"
|
| 750 | }
|
| 751 |
|
| 752 | ysh-builtins() {
|
| 753 | run-file ysh-builtins "$@"
|
| 754 | }
|
| 755 |
|
| 756 | ysh-builtin-module() {
|
| 757 | run-file ysh-builtin-module "$@"
|
| 758 | }
|
| 759 |
|
| 760 | ysh-builtin-eval() {
|
| 761 | run-file ysh-builtin-eval "$@"
|
| 762 | }
|
| 763 |
|
| 764 | # Related to errexit-oil
|
| 765 | ysh-builtin-error() {
|
| 766 | run-file ysh-builtin-error "$@"
|
| 767 | }
|
| 768 |
|
| 769 | ysh-builtin-meta() {
|
| 770 | run-file ysh-builtin-meta "$@"
|
| 771 | }
|
| 772 |
|
| 773 | ysh-builtin-process() {
|
| 774 | run-file ysh-builtin-process "$@"
|
| 775 | }
|
| 776 |
|
| 777 | ysh-builtin-shopt() {
|
| 778 | run-file ysh-builtin-shopt "$@"
|
| 779 | }
|
| 780 |
|
| 781 | ysh-case() {
|
| 782 | run-file ysh-case "$@"
|
| 783 | }
|
| 784 |
|
| 785 | ysh-command-sub() {
|
| 786 | run-file ysh-command-sub "$@"
|
| 787 | }
|
| 788 |
|
| 789 | ysh-demo() {
|
| 790 | run-file ysh-demo "$@"
|
| 791 | }
|
| 792 |
|
| 793 | ysh-expr() {
|
| 794 | run-file ysh-expr "$@"
|
| 795 | }
|
| 796 |
|
| 797 | ysh-int-float() {
|
| 798 | run-file ysh-int-float "$@"
|
| 799 | }
|
| 800 |
|
| 801 | ysh-expr-bool() {
|
| 802 | run-file ysh-expr-bool "$@"
|
| 803 | }
|
| 804 |
|
| 805 | ysh-expr-arith() {
|
| 806 | run-file ysh-expr-arith "$@"
|
| 807 | }
|
| 808 |
|
| 809 | ysh-expr-compare() {
|
| 810 | run-file ysh-expr-compare "$@"
|
| 811 | }
|
| 812 |
|
| 813 | ysh-expr-sub() {
|
| 814 | run-file ysh-expr-sub "$@"
|
| 815 | }
|
| 816 |
|
| 817 | ysh-cmd-lang() {
|
| 818 | run-file ysh-cmd-lang "$@"
|
| 819 | }
|
| 820 |
|
| 821 | ysh-for() {
|
| 822 | run-file ysh-for "$@"
|
| 823 | }
|
| 824 |
|
| 825 | ysh-methods() {
|
| 826 | run-file ysh-methods "$@"
|
| 827 | }
|
| 828 |
|
| 829 | ysh-func() {
|
| 830 | run-file ysh-func "$@"
|
| 831 | }
|
| 832 |
|
| 833 | ysh-func-builtin() {
|
| 834 | run-file ysh-func-builtin "$@"
|
| 835 | }
|
| 836 |
|
| 837 | ysh-funcs-external() {
|
| 838 | run-file ysh-funcs-external "$@"
|
| 839 | }
|
| 840 |
|
| 841 | ysh-interactive() {
|
| 842 | run-file ysh-interactive "$@"
|
| 843 | }
|
| 844 |
|
| 845 | ysh-json() {
|
| 846 | run-file ysh-json "$@"
|
| 847 | }
|
| 848 |
|
| 849 | ysh-keywords() {
|
| 850 | run-file ysh-keywords "$@"
|
| 851 | }
|
| 852 |
|
| 853 | ysh-multiline() {
|
| 854 | run-file ysh-multiline "$@"
|
| 855 | }
|
| 856 |
|
| 857 | ysh-options() {
|
| 858 | run-file ysh-options "$@"
|
| 859 | }
|
| 860 |
|
| 861 | ysh-options-assign() {
|
| 862 | run-file ysh-options-assign "$@"
|
| 863 | }
|
| 864 |
|
| 865 | ysh-proc() {
|
| 866 | run-file ysh-proc "$@"
|
| 867 | }
|
| 868 |
|
| 869 | ysh-regex() {
|
| 870 | run-file ysh-regex "$@"
|
| 871 | }
|
| 872 |
|
| 873 | ysh-regex-api() {
|
| 874 | run-file ysh-regex-api "$@"
|
| 875 | }
|
| 876 |
|
| 877 | ysh-reserved() {
|
| 878 | run-file ysh-reserved "$@"
|
| 879 | }
|
| 880 |
|
| 881 | ysh-scope() {
|
| 882 | run-file ysh-scope "$@"
|
| 883 | }
|
| 884 |
|
| 885 | ysh-slice-range() {
|
| 886 | run-file ysh-slice-range "$@"
|
| 887 | }
|
| 888 |
|
| 889 | ysh-string() {
|
| 890 | run-file ysh-string "$@"
|
| 891 | }
|
| 892 |
|
| 893 | ysh-special-vars() {
|
| 894 | run-file ysh-special-vars "$@"
|
| 895 | }
|
| 896 |
|
| 897 | ysh-tuple() {
|
| 898 | run-file ysh-tuple "$@"
|
| 899 | }
|
| 900 |
|
| 901 | ysh-var-sub() {
|
| 902 | run-file ysh-var-sub "$@"
|
| 903 | }
|
| 904 |
|
| 905 | ysh-with-sh() {
|
| 906 | run-file ysh-with-sh "$@"
|
| 907 | }
|
| 908 |
|
| 909 | ysh-word-eval() {
|
| 910 | run-file ysh-word-eval "$@"
|
| 911 | }
|
| 912 |
|
| 913 | ysh-xtrace() {
|
| 914 | run-file ysh-xtrace "$@"
|
| 915 | }
|
| 916 |
|
| 917 | ysh-user-feedback() {
|
| 918 | run-file ysh-user-feedback "$@"
|
| 919 | }
|
| 920 |
|
| 921 | ysh-builtin-ctx() {
|
| 922 | run-file ysh-builtin-ctx "$@"
|
| 923 | }
|
| 924 |
|
| 925 | ysh-builtin-error() {
|
| 926 | run-file ysh-builtin-error "$@"
|
| 927 | }
|
| 928 |
|
| 929 | ysh-builtin-help() {
|
| 930 | run-file ysh-builtin-help "$@"
|
| 931 | }
|
| 932 |
|
| 933 | ysh-dev() {
|
| 934 | run-file ysh-dev "$@"
|
| 935 | }
|
| 936 |
|
| 937 | ysh-printing() {
|
| 938 | run-file ysh-printing "$@"
|
| 939 | }
|
| 940 |
|
| 941 |
|
| 942 | #
|
| 943 | # More OSH
|
| 944 | #
|
| 945 |
|
| 946 | nix-idioms() {
|
| 947 | run-file nix-idioms "$@"
|
| 948 | }
|
| 949 |
|
| 950 | zsh-idioms() {
|
| 951 | run-file zsh-idioms "$@"
|
| 952 | }
|
| 953 |
|
| 954 | ble-idioms() {
|
| 955 | sh-spec spec/ble-idioms.test.sh \
|
| 956 | $BASH $ZSH $MKSH $BUSYBOX_ASH $OSH_LIST "$@"
|
| 957 | }
|
| 958 |
|
| 959 | ble-features() {
|
| 960 | run-file ble-features "$@"
|
| 961 | }
|
| 962 |
|
| 963 | toysh() {
|
| 964 | run-file toysh "$@"
|
| 965 | }
|
| 966 |
|
| 967 | toysh-posix() {
|
| 968 | run-file toysh-posix "$@"
|
| 969 | }
|
| 970 |
|
| 971 | run-task "$@"
|