13 lines · plain
1! RUN: %if x86-registered-target %{ %python %S/test_errors.py %s %flang --target=x86_64-pc-windows-msvc -Werror %}2! RUN: %if aarch64-registered-target %{ %python %S/test_errors.py %s %flang --target=aarch64-pc-windows-msvc -Werror %}3 4subroutine uid5 !WARNING: User IDs do not exist on Windows. This function will always return 16 i = getuid()7end subroutine uid8 9subroutine gid10 !WARNING: Group IDs do not exist on Windows. This function will always return 111 i = getgid()12end subroutine gid13