Skip to content

Commit c3a3843

Browse files
authored
Merge branch 'ThrowTheSwitch:master' into dev/gen-testrunner-use-begin-end-macro
2 parents ef7f968 + c444b63 commit c3a3843

File tree

117 files changed

+1176
-225
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+1176
-225
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) <year> 2007-23 Mike Karlesky, Mark VanderVoord, Greg Williams
3+
Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, Greg Williams
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

auto/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# =========================================================================
2+
# Unity - A Test Framework for C
3+
# ThrowTheSwitch.org
4+
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
5+
# SPDX-License-Identifier: MIT
6+
# =========================================================================
7+

auto/colour_prompt.rb

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# ==========================================
2-
# Unity Project - A Test Framework for C
3-
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
4-
# [Released under MIT License. Please refer to license.txt for details]
5-
# ==========================================
1+
# =========================================================================
2+
# Unity - A Test Framework for C
3+
# ThrowTheSwitch.org
4+
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
5+
# SPDX-License-Identifier: MIT
6+
# =========================================================================
67

78
if RUBY_PLATFORM =~ /(win|w)32$/
89
begin

auto/colour_reporter.rb

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# ==========================================
2-
# Unity Project - A Test Framework for C
3-
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
4-
# [Released under MIT License. Please refer to license.txt for details]
5-
# ==========================================
1+
# =========================================================================
2+
# Unity - A Test Framework for C
3+
# ThrowTheSwitch.org
4+
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
5+
# SPDX-License-Identifier: MIT
6+
# =========================================================================
67

78
require_relative 'colour_prompt'
89

auto/extract_version.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
#!/usr/bin/env python3
2+
# =========================================================================
3+
# Unity - A Test Framework for C
4+
# ThrowTheSwitch.org
5+
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
6+
# SPDX-License-Identifier: MIT
7+
# =========================================================================
8+
29
import re
310
import sys
411

auto/generate_config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# =========================================================================
2+
# Unity - A Test Framework for C
3+
# ThrowTheSwitch.org
4+
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
5+
# SPDX-License-Identifier: MIT
6+
# =========================================================================
7+
18
#this is a sample configuration file for generate_module
29
#you would use it by calling generate_module with the -ygenerate_config.yml option
310
#files like this are useful for customizing generate_module to your environment

auto/generate_module.rb

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
# ==========================================
2-
# Unity Project - A Test Framework for C
3-
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
4-
# [Released under MIT License. Please refer to license.txt for details]
5-
# ==========================================
1+
# =========================================================================
2+
# Unity - A Test Framework for C
3+
# ThrowTheSwitch.org
4+
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
5+
# SPDX-License-Identifier: MIT
6+
# =========================================================================
67

78
# This script creates all the files with start code necessary for a new module.
89
# A simple module only requires a source file, header file, and test file.

auto/generate_test_runner.rb

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/usr/bin/ruby
22

3-
# ==========================================
4-
# Unity Project - A Test Framework for C
5-
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
6-
# [Released under MIT License. Please refer to license.txt for details]
7-
# ==========================================
3+
# =========================================================================
4+
# Unity - A Test Framework for C
5+
# ThrowTheSwitch.org
6+
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
7+
# SPDX-License-Identifier: MIT
8+
# =========================================================================
89

910
class UnityTestRunnerGenerator
1011
def initialize(options = nil)

auto/parse_output.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# =========================================================================
2+
# Unity - A Test Framework for C
3+
# ThrowTheSwitch.org
4+
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
5+
# SPDX-License-Identifier: MIT
6+
# =========================================================================
17
#============================================================
28
# Author: John Theofanopoulos
39
# A simple parser. Takes the output files generated during the

auto/stylize_as_junit.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
#! python3
2-
# ==========================================
3-
# Fork from Unity Project - A Test Framework for C
4-
# Pull request on Gerrit in progress, the objective of this file is to be deleted when official Unity deliveries
5-
# include that modification
6-
# Copyright (c) 2015 Alexander Mueller / [email protected]
7-
# [Released under MIT License. Please refer to license.txt for details]
8-
# ==========================================
2+
# =========================================================================
3+
# Unity - A Test Framework for C
4+
# ThrowTheSwitch.org
5+
# Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
6+
# SPDX-License-Identifier: MIT
7+
# =========================================================================
98
import sys
109
import os
1110
from glob import glob

0 commit comments

Comments
 (0)