Skip to content
Snippets Groups Projects
  • Shubham's avatar
    95007528
    Test, coverage and documentation fixes · 95007528
    Shubham authored and Rahul Thakur's avatar Rahul Thakur committed
     - all test scenarios added for functional testing
     - wrong method for qos object
     - strncpy fixed and ports uci file needed for testing
     - compilation fix for functional test
     - Added dummy test stats for test platform
     - removed reload from documentation
     - unnecessary test removal
    95007528
    History
    Test, coverage and documentation fixes
    Shubham authored and Rahul Thakur's avatar Rahul Thakur committed
     - all test scenarios added for functional testing
     - wrong method for qos object
     - strncpy fixed and ports uci file needed for testing
     - compilation fix for functional test
     - Added dummy test stats for test platform
     - removed reload from documentation
     - unnecessary test removal
install-dependencies.sh 447 B
#!/bin/bash

echo "install dependencies"

pwd

# libqos
cd /opt/dev  
rm -fr easy-soc-libs  
git clone https://dev.iopsys.eu/iopsys/easy-soc-libs.git  
cd easy-soc-libs  
cd libeasy  
make CFLAGS+="-I/usr/include/libnl3"  
mkdir -p /usr/include/easy  
cp easy.h event.h utils.h if_utils.h debug.h /usr/include/easy  
cp -a libeasy*.so* /usr/lib  
cd ../libqos  
make PLATFORM=TEST
cp qos.h /usr/include  
cp -a libqos.so* /usr/lib  
sudo ldconfig