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

os/exec: on Windows look for extensions in Run if not already done #67035

Open
wants to merge 13 commits into
base: master
Choose a base branch
from

Commits on May 30, 2024

  1. os/exec: not add a suffix to Cmd.Path

    For avoid data race for cmd.Path , in CL 527820 fixed data race , but addition of suffixe as shown in golang#66586 was also introduced.
    The result of call lookExtensions is actually the name passed to os.StartProcess,
    But solutions at the time chose to reuse cmd.Path to represent the name passed to os.StartProcess,since this results in golang#66586,
    So use new field save call lookExtensions result.
    
    Fixes golang#66586
    
    Change-Id: Ib1baa6d7803f9471af6e38bcb55f0298422e6743
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    f51931d View commit details
    Browse the repository at this point in the history
  2. n

    Change-Id: Iaf48768865f63b9d828a2bf46478e72da65891c7
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    078683c View commit details
    Browse the repository at this point in the history
  3. n

    Change-Id: I23878885974cddceb110566020f44a776e9af2f4
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    ff7b0a6 View commit details
    Browse the repository at this point in the history
  4. n

    Change-Id: Ia532697ea429907567ab156f6f50059a15e90fbb
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    73f07ac View commit details
    Browse the repository at this point in the history
  5. n

    Change-Id: Ia5035a9e583fffee355265ee18cb10609d9c14c1
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    7ba34d5 View commit details
    Browse the repository at this point in the history
  6. n

    Change-Id: I22c8737d1c6201f5d1b63ff70b85b04df3863e0f
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    b41c326 View commit details
    Browse the repository at this point in the history
  7. n

    Change-Id: I3d1f59eb50c754715d333526b84f7cebee65476a
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    d82fe30 View commit details
    Browse the repository at this point in the history
  8. n

    Change-Id: Ie084691584b08e17944079f182cc353a98191780
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    44f0084 View commit details
    Browse the repository at this point in the history
  9. n

    Change-Id: If135e6103cc0fac40a3724e2ba43a72f48c5fc9f
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    f9ace65 View commit details
    Browse the repository at this point in the history
  10. n

    Change-Id: Ib1a532c540c890ce988e4092699fd879baf9799f
    qiulaidongfeng committed May 30, 2024
    Configuration menu
    Copy the full SHA
    7ee45f8 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2024

  1. n

    Change-Id: I04351ac442c5d5cd25ddca84ad9e76a88bb21abb
    qiulaidongfeng committed May 31, 2024
    Configuration menu
    Copy the full SHA
    197d6e4 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2024

  1. n

    Change-Id: Ibeb7ff0def24354435a3784dceb22245463a21f1
    qiulaidongfeng committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    b7431d6 View commit details
    Browse the repository at this point in the history
  2. n

    Change-Id: Iaaa821da8451bab91e81ea457b3ea6f32ff91823
    qiulaidongfeng committed Jun 1, 2024
    Configuration menu
    Copy the full SHA
    dc3169f View commit details
    Browse the repository at this point in the history