#!/bin/sh
# Copyright 2023 Collabora Ltd.
# SPDX-License-Identifier: MIT

set -eux

echo "TAP version 13"
test_num=0

vkd3d-compiler -x hlsl -p vs_5_0 -e vs_main -o/dev/null \
    debian/tests/triangle.hlsl
test_num=$(( test_num + 1 ))
echo "ok $test_num"

echo "1..$test_num"
