Skip to content

Commit

Permalink
add more test case to GitHub Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchennn committed Sep 1, 2023
1 parent e587401 commit 192b399
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,13 @@ jobs:
./test_ci.sh TestN2Handover
sleep 1
./test_ci.sh TestReSynchronization
sleep 1
./test_ci.sh TestDuplicateRegistration
sleep 1
./test_ci.sh TestEAPAKAPrimeAuthentication
- name: ULCL Test
run: ./test_ci_ulcl.sh TestRequestTwoPDUSessions
- name: remove uncommitted changes
run: ./patch.sh
- name: Non3GPP Test
run: ./test_ci.sh TestNon3GPP
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ jobs:
./test_ci.sh TestN2Handover
sleep 1
./test_ci.sh TestReSynchronization
sleep 1
./test_ci.sh TestDuplicateRegistration
sleep 1
./test_ci.sh TestEAPAKAPrimeAuthentication
- name: ULCL Test
run: ./test_ci_ulcl.sh TestRequestTwoPDUSessions
# - name: Non3GPP Test
# run: ./test_ci.sh TestNon3GPP
- name: Non3GPP Test
run: ./test_ci.sh TestNon3GPP
4 changes: 2 additions & 2 deletions test/non3gpp_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var (
n3iwfInfo_IPSecIfaceAddr = "192.168.127.1"
n3ueInfo_IPSecIfaceAddr = "192.168.127.2"
n3ueInfo_SmPolicy_SNSSAI_SST = "1"
n3ueInfo_SmPolicy_SNSSAI_SD = "010203"
n3ueInfo_SmPolicy_SNSSAI_SD = "fedcba"
n3ueInfo_IPSecIfaceName = "veth3"
n3ueInfo_XfrmiName = "ipsec"
n3ueInfo_XfrmiId = uint32(1)
Expand Down Expand Up @@ -1581,7 +1581,7 @@ func TestNon3GPPUE(t *testing.T) {
// UE request PDU session setup
sNssai := models.Snssai{
Sst: 1,
Sd: "010203",
Sd: "fedcba",
}

var pduSessionId uint8 = 1
Expand Down

0 comments on commit 192b399

Please sign in to comment.