mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-19 15:40:30 +00:00
Add simple unit tests for the new functions. Signed-off-by: Jaroslava Fiedlerova <jaroslava.fiedlerova@openairinterface.org>
11 lines
167 B
Bash
Executable File
11 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
function die() { echo $@; exit 1; }
|
|
|
|
echo "Deploy script executed with options: $@"
|
|
|
|
[ $# -lt 2 ] && die "failing"
|
|
|
|
exit 0
|