Skip to content

Commit

Permalink
update r691
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Sep 8, 2014
1 parent 2b6ccde commit e5dc0dc
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = iutest
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.10.0.2
PROJECT_NUMBER = 1.10.0.3

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
16 changes: 16 additions & 0 deletions include/gtest/switch/iutest_switch_peep.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,22 @@
# define IUTEST_HAS_PEEP_STATIC_FUNC 0
#endif

#if IUTEST_HAS_PEEP

namespace testing {
namespace detail
{

using ::iutest::detail::peep_tag;

} // end of namespace detail

using ::iutest::Peep;

} // end of namespace testing

#endif

#endif // !defined(IUTEST_USE_GTEST)

#endif // INCG_IRIS_IUTEST_SWITCH_PEEP_HPP_316C2127_8DF8_4B99_9C07_9170B403D6AD_
4 changes: 2 additions & 2 deletions include/iutest_ver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@

//======================================================================
// define
#define IUTEST_VER 0x01100002u //!< iutest version 1.10.0.2
#define IUTEST_VER 0x01100003u //!< iutest version 1.10.0.3
#define IUTEST_MAJORVER 0x01u //!< Major Version
#define IUTEST_MINORVER 0x10u //!< Minor Version
#define IUTEST_BUILD 0x00u //!< Build
#define IUTEST_REVISION 0x02u //!< Revision
#define IUTEST_REVISION 0x03u //!< Revision

/**
* @mainpage
Expand Down
1 change: 1 addition & 0 deletions test/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ RUNNER = $(RUN_TARGETS:%=run_%)

ifdef USE_FUSED
IUTEST_INCLUDE=-I$(IUTEST_DIR)/fused-src
IUTEST_HEADERS+=$(IUTEST_DIR)/fused-src/iutest.hpp
endif

#
Expand Down
3 changes: 3 additions & 0 deletions tools/fuse/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ FUSED_DIR = $(IUTEST_DIR)/fused-src
default: $(FUSED_DIR) $(IUTEST_HEADERS) fuse_iutest_files.py Makefile
python fuse_iutest_files.py $(FUSED_DIR)

min: default
mv $(FUSED_DIR)/iutest.min.hpp $(FUSED_DIR)/iutest.hpp

clean:
$(RM) -rf $(FUSED_DIR)

Expand Down
1 change: 1 addition & 0 deletions tools/fuse/fuse_iutest_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ def ProcessFile(curr, filename, fileset, minimum):
line = re.sub('\s+([&|\+\-<>]+)[ \t]+', '\\1', line)
line = re.sub('\s*([{\+\-\*/%=<>&|]+=)[ \t]*', '\\1', line)
#line = re.sub('\w\s*([{\+\-\*/%=<>&|!]+)[ \t]*', '\\1', line)
line = re.sub('\s+:[ \t]+(\w)', ':\\1', line)
line = re.sub('\s*,[ \t]*', ',', line)
line = re.sub('\s*\)', ')', line)
line = re.sub('\)\s+{', '){', line)
Expand Down

0 comments on commit e5dc0dc

Please sign in to comment.