aboutsummaryrefslogtreecommitdiffstats
path: root/etc/ci/check_no_panic.sh
blob: be59f5ddef12bf0d17bf8cf124d78af9688c3607 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

# Make sure listed paths do not use unwrap() or panic!()

set -o errexit
set -o nounset
set -o pipefail

# cd into repo root to make sure paths work in any case
cd "$(git rev-parse --show-toplevel)"

# Each path can be either a single file or a directory
PATHS=(
    "components/compositing/compositor.rs"
    "components/constellation/"
    "ports/glutin/headed_window.rs"
    "ports/glutin/headless_window.rs"
    "ports/glutin/embedder.rs"
)

# Make sure the paths exist
ls -1 "${PATHS[@]}"

# Make sure the files do not contain "unwrap" or "panic!"
! grep \
    --dereference-recursive \
    --line-number \
    --with-filename \
    "unwrap(\|panic!(" \
    "${PATHS[@]}"