File tree 3 files changed +28
-1
lines changed
3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -1011,6 +1011,17 @@ jobs:
1011
1011
- name : Run PEDM simulator (limited test)
1012
1012
run : ./crates/pedm-simulator/run-container.ps1
1013
1013
1014
+ - name : Install PsExec
1015
+ run : choco install pstools --yes
1016
+
1017
+ - name : Test PsExec
1018
+ run : psexec -accepteula ipconfig
1019
+
1020
+ - name : Run PEDM simulator (LocalSystem test)
1021
+ run : |
1022
+ $scriptPath = Resolve-Path -Path "./crates/pedm-simulator/run-expect-elevated.ps1"
1023
+ psexec -accepteula -i -s pwsh.exe $scriptPath
1024
+
1014
1025
success :
1015
1026
name : Success
1016
1027
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change
1
+ # !/bin/env pwsh
2
+
3
+ $ErrorActionPreference = " Stop"
4
+
5
+ Push-Location - Path $PSScriptRoot
6
+
7
+ $exitCode = 0
8
+
9
+ try {
10
+ $Env: PEDM_SIMULATOR_EXPECT_ELEVATION = ' 1'
11
+ & ./ artifacts/ pedm-simulator.exe
12
+ $exitCode = $LASTEXITCODE
13
+ } finally {
14
+ Pop-Location
15
+ exit $exitCode
16
+ }
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ fn main() -> anyhow::Result<()> {
122
122
} else {
123
123
match res {
124
124
Ok ( _) => {
125
- anyhow:: bail!( "admin token creation should have failed, because the current process is not elevated " )
125
+ anyhow:: bail!( "admin token creation succeded, but this was not expected " )
126
126
}
127
127
Err ( e) => {
128
128
assert_eq ! ( e. to_string( ) , "no token found for SE_CREATE_TOKEN_NAME privilege" ) ;
You can’t perform that action at this time.
0 commit comments