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

go_test: ensure external source compilation has data #3848

Merged
merged 2 commits into from
Feb 6, 2024

Commits on Feb 6, 2024

  1. go_test: ensure external source compilation has data

    go_test is split into 2 compilation actions, one for internal test,
    where package name of the test is the same with library package.
    
    ```bash
    package foo
    
    package foo
    ```
    
    and external test where the package name is different.
    ```bash
    package foo
    
    package foo_test
    ```
    
    Ensure that the compilation for external test has access to go_test's
    data attribute.
    sluongng committed Feb 6, 2024
    Configuration menu
    Copy the full SHA
    09b8949 View commit details
    Browse the repository at this point in the history
  2. add test

    sluongng committed Feb 6, 2024
    Configuration menu
    Copy the full SHA
    e92d044 View commit details
    Browse the repository at this point in the history