• Cedric Roux's avatar
    nr rlc: first commit · 1a46b66d
    Cedric Roux authored
    Initial implementation.
    
    nr_rlc/nr_rlc_oai_api.c will need some clean rewrite at some point.
    
    More testing is also needed.
    1a46b66d
run_tests.sh 161 Bytes
#!/bin/sh

test_count=13

for i in `seq $test_count`
do
  make all TEST=test$i >/dev/null 2>/dev/null
  if [ $? != 0 ]
  then
    echo TEST $i FAILURE
  fi
done