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

Revise tools scripts to be python3 compatible on win32 and enable github ci for win32 #4856

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Nov 14, 2024

  1. Revise tools scripts to be python3 compatible on win32

    We introduce setup_stdio function to setup stdout/stderr properly.
    For python <-> python pipe, we always use 'utf8'/'ignore' encoding for not lost
    characters.
    For tty <-> python, we using native encoding with xmlcharrefreplace to encode, to
    preserve maximal information.
    For python <-> native program, we use naive encoding with 'ignore' to not cause error
    
    update_exclude_list with binary mode so that on win32 would not generate \r\n
    
    run-test-suite.py: Handling skiplist properly on win32
    
    Fixes jerryscript-project#4854
    
    Fixes test262-harness.py complain cannot use a string pattern on a bytes-like object with running test262 with python3
    
    For reading/writing to file, we use 'utf8' /'ignore' encoding for not lost characters.
    For decoding from process stdout, using native encoding with decoding error ignored for not lost data.
    Execute commands also ignore errors
    Fixes jerryscript-project#4853
    
    Fixes running test262-esnext failed with installed python3.9 on win32 with space in path
    Fixes jerryscript-project#4852
    
    ```
    support both / \ in --test262-test-list arg
    
    On win32.
    python tools/run-tests.py  --test262-es2015=update --test262-test-list=built-ins/decodeURI/
    python tools/run-tests.py  --test262-es2015=update --test262-test-list=built-ins\decodeURI\
    should be both valid,
    currently only --test262-test-list=built-ins\decodeURI\ are valid.
    ```
    
    ```
    Support snapshot-tests-skiplist.txt on win32 by use os.path.normpath
    ```
    
    Guard run-tests.py with timer.
    
    All run-tests.py are finished in 30 minutes in normal situation.
    May increase the timeout future.
    
    wait JERRY_CHECK_TIMEOUT
    
    ```
    
    Move Windows CI to github actions
    
    Convert run-debugger-test.sh to run-debugger-test.py
    
    After this change, run-debugger-test.py could running on Win32 and OSX
    
    Define TERM colors for win32 properly
    
    ```
    
    ```
    
    flush stderr.write stdout.write
    
    On CI, the stderr are redirect to stdout, and if we don't flush stderr and stdout,
    The output from stderr/stdout would out of sync.
    
    ```
    
    `Testing new Date(-8640000000000000) and fixes date for win32`
    So that the CI can passed
    
    JerryScript-DCO-1.0-Signed-off-by: Yonggang Luo [email protected]
    lygstate committed Nov 14, 2024
    Configuration menu
    Copy the full SHA
    d59a19a View commit details
    Browse the repository at this point in the history