cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

run_netsocktests (206B)


      1#!/bin/sh
      2# SPDX-License-Identifier: GPL-2.0
      3
      4echo "--------------------"
      5echo "running socket test"
      6echo "--------------------"
      7./socket
      8if [ $? -ne 0 ]; then
      9	echo "[FAIL]"
     10	exit 1
     11else
     12	echo "[PASS]"
     13fi