From 464ac18a1f451430d1e2e7f1090a2671237e27d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Thu, 28 Oct 2021 16:39:51 +0200 Subject: [PATCH 1/3] Rename negation_bug.yul to negation_bug.sol --- .../semanticTests/viaYul/{negation_bug.yul => negation_bug.sol} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test/libsolidity/semanticTests/viaYul/{negation_bug.yul => negation_bug.sol} (100%) diff --git a/test/libsolidity/semanticTests/viaYul/negation_bug.yul b/test/libsolidity/semanticTests/viaYul/negation_bug.sol similarity index 100% rename from test/libsolidity/semanticTests/viaYul/negation_bug.yul rename to test/libsolidity/semanticTests/viaYul/negation_bug.sol From 60ba3b307fd5e16cd0f68f0533e982a66ce5877b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Thu, 28 Oct 2021 17:34:57 +0200 Subject: [PATCH 2/3] isolate_tests: Fix typo in script description --- scripts/isolate_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/isolate_tests.py b/scripts/isolate_tests.py index 1e2170e82..4abe6a0bd 100755 --- a/scripts/isolate_tests.py +++ b/scripts/isolate_tests.py @@ -134,7 +134,7 @@ def extract_and_write(path, language): if __name__ == '__main__': script_description = ( "Reads Solidity, C++ or RST source files and extracts compilable solidity and yul code blocks from them. " - "Can be used to generate test cases to validade code examples. " + "Can be used to generate test cases to validate code examples. " ) parser = ArgumentParser(description=script_description) From fd66f13dc0ca8052eb3bf1dedf5afb6ed8c14399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Thu, 28 Oct 2021 19:08:06 +0200 Subject: [PATCH 3/3] soltest.sh: Fix typo in a comment --- .circleci/soltest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/soltest.sh b/.circleci/soltest.sh index 4f9bd8a81..1814b8728 100755 --- a/.circleci/soltest.sh +++ b/.circleci/soltest.sh @@ -46,7 +46,7 @@ source "${REPODIR}/scripts/common.sh" # Test result output directory (CircleCI is reading test results from here) mkdir -p test_results -# in case we run with ASAN enabled, we must increase stck size. +# in case we run with ASAN enabled, we must increase stack size. ulimit -s 16384 get_logfile_basename() {