File: unit-test

package info (click to toggle)
ulfius 2.7.15-2.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,856 kB
  • sloc: ansic: 23,025; makefile: 708; sh: 140
file content (20 lines) | stat: -rw-r--r-- 432 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e

exec 2>&1

cd test
./cert/create-cert.sh
make u_map core framework websocket example_callbacks

# Workaround for LP: #1945634. If ::1 is already present this will append
# it another time. Having it twice won't hurt; let's take the simple route.
# Hopefully we'll be able to drop this delta at some point.
[ -n "$no_proxy" ] && no_proxy="$no_proxy,::1"

./u_map
./core
./framework
./websocket
./example_callbacks