LTE End to End Testing #1399
Unanswered
Justin-Garey
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Using the latest release (23.11), I have been trying to run the end to end tests. I started by enabling them through
cmake
so they would run withmake test
. I soon learned that I needed to usesudo
to run them due to thenetns
being created. They still weren't passing so I started attempting with therun_lte.sh
script in thetest
directory. That told me I neededscreen
to be installed. After that, the tests are able to fully run.The tests are still reported as failing due to the UE not properly being shut down. For example, when running
sudo ./run_lte.sh ~/Repos/srsRAN_4G/build/ 100
, I receive:Looking into what the script is doing, it is checking that the log reports
--- exiting ---
on the last line of the log file. Instead the log file ends with:Adding more time for the shutdown to occur does not seem to help. Is there something going wrong here? Is the UE not shutting down properly something that I should ignore?
Beta Was this translation helpful? Give feedback.
All reactions