Conversation
jeber-ibm
left a comment
There was a problem hiding this comment.
Can we run the test as the following? We'll need to add a profile with SECOFR authority.
java -cp staging/jt400-${{ env.project_version }}-java8.jar: test.jar test.RegressionTest -tc JDBC -tc UserSpace -tc DataArea -tc Conv -tc CommandCall -system ${{ secrets.IBMI_TEST_SYS }} -uid ${{ secrets.IBMI_TEST_USER }} -pwd ${{ secrets.IBMI_TEST_PW }} -pwrSys ${{ ${{ secrets.IBMI_PWR_USER }},secrets.IBMI_PWR_PWD }}
Is there a way to save the output of the run?
Can we check the output for the string --
Sure. Does that mean failure or success? |
Signed-off-by: John Eberhard <102746950+jeber-ibm@users.noreply.github.com> Signed-off-by: Jesse Gorzinski <17914061+ThePrez@users.noreply.github.com>
|
Squashed some commits, now getting a new failure Cleanup failed:
com.ibm.as400.access.ObjectDoesNotExistException: /QSYS.LIB/USTEST.LIB/USWRITE.USRSPC: Object does not exist.
at com.ibm.as400.access.UserSpaceImplRemote.buildException(UserSpaceImplRemote.java:62)
at com.ibm.as400.access.UserSpaceImplRemote.delete(UserSpaceImplRemote.java:188)
at com.ibm.as400.access.UserSpace.delete(UserSpace.java:403)
at test.UserSpacePgmCallTestcase.deleteUserSpace(UserSpacePgmCallTestcase.java:73)
at test.UserSpacePgmCallTestcase.Var026(UserSpacePgmCallTestcase.java:1069)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at test.Testcase.invokeVariation(Testcase.java:1720)
at test.Testcase.run(Testcase.java:2267)
at test.TestDriver.run(TestDriver.java:868)
at test.TestDriver.start(TestDriver.java:1113)
at test.RegressionTest.main(RegressionTest.java:82) |
|
Looks like the call to create the user space is silently failing. That call should have created the user space. I wonder if there is an authority problem with the profile running the test. |
No description provided.