Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: fix test.py command line options processing #11153

Commits on Feb 3, 2017

  1. test: fix test.py command line options processing

    nodejs#11086 had introduced a regression
    that broke command line options processing for tools/test.py.
    
    Basically, it made tools/test.py discard the command line argument that
    would be passed after `--abort-on-timeout`. For instance, when running:
    
    ```
    $ python tools/test.py --abort-on-timeout path/to/some-test
    ```
    
    all tests would be run because the last command line argument
    (`/path/to/some-test`) would be discarded.
    
    This change fixes this regression.
    
    Refs: nodejs#11086
    Julien Gilli committed Feb 3, 2017
    Configuration menu
    Copy the full SHA
    7b3aea7 View commit details
    Browse the repository at this point in the history