logo

deblob

remove binary executables from a directory git clone https://hacktivis.me/git/deblob.git
commit: 934750146b5efcc08d8360100046c1e031ccce82
parent a94a10fe77daeb56130d877d4fdcd9edb670b2ee
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Fri, 30 Sep 2022 07:11:19 +0200

Add missing copyright notices

Diffstat:

MREADME.md5+++++
Mmain.ha4++--
Atest/fixtures/hello.wasm.license2++
3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -29,3 +29,8 @@ The following fixtures are either manually built or copied from another project: - `Elixir.Hex.API.Auth.beam` was copied from an installed Elixir 1.13.3 - `FirstRepeatingElement.class` was downloaded from <https://bae.st/objects/873a9ede-7995-4c38-b64a-0d49d2c0e98c> - `monodx.dll` is `lib/x86/monodx.dll` from wine-mono 7.0.0 + +<!-- +SPDX-FileCopyrightText: 2019-2022 deblob Authors <https://hacktivis.me/projects/deblob> +SPDX-License-Identifier: BSD-3-Clause +--> diff --git a/main.ha b/main.ha @@ -183,7 +183,7 @@ fn check_dir(dirname: str) (void | errors::invalid) = { case let e: fs::error => fmt::fatalf("os::readdir({}): {}", dirname, fs::strerror(e)); }; - assert(len(files_before) == 24); + assert(len(files_before) == 25); const ret = check_dir(dirname); assert(ret is void); @@ -194,7 +194,7 @@ fn check_dir(dirname: str) (void | errors::invalid) = { case let e: fs::error => fmt::fatalf("os::readdir({}): {}", dirname, fs::strerror(e)); }; - assert(len(files_after) == 14); + assert(len(files_after) == 15); }; export fn main() void = { diff --git a/test/fixtures/hello.wasm.license b/test/fixtures/hello.wasm.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2021 Stephan Avenwedde <https://opensource.com/article/21/3/hello-world-webassembly> +SPDX-License-Identifier: CC-BY-SA-4.0