mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change-Id: I442f5bf081d89369f7c71b0de2c99fd39b3ff942 Signed-off-by: Pawel Cieslak <pawel.cieslak@intel.com>
21 lines
337 B
Bash
Executable File
21 lines
337 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2018-2019 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
#
|
|
# Simple, file based tests for copyright script
|
|
# script return non-zero error code if something went wrong.
|
|
# diff output is printed
|
|
#
|
|
|
|
../../lint/set_copyright.py in/*
|
|
|
|
for i in in/*
|
|
do
|
|
fn=$(basename $i)
|
|
diff -du in/$fn out/$fn
|
|
done
|