This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[23:13:01] mmatrosov ~/dev/temp/Catch2/build (gtest-reporter) | |
$ ninja && projects/SelfTest -r gtest '*fail*' | |
Filters: *fail* | |
[==========] Running SelfTest | |
[----------] A METHOD_AS_TEST_CASE based test run that fails | |
[ RUN ] A METHOD_AS_TEST_CASE based test run that fails | |
../projects/SelfTest/UsageTests/Class.tests.cpp:32: FAILED: | |
REQUIRE( s == "world" ) | |
with expansion: | |
"hello" == "world" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[22:58:53] mmatrosov ~/dev/temp/Catch2/build (gtest-reporter) | |
$ ninja && projects/SelfTest -r gtest | |
[==========] Running SelfTest | |
[----------] Parse test names and tags | |
[ RUN ] Parse test names and tags | |
[ RUN ] Parse test names and tags / Empty test spec should have no filters | |
[ OK ] Parse test names and tags / Empty test spec should have no filters (0 ms) | |
[ RUN ] Parse test names and tags / Test spec from empty string should have no filters | |
[ OK ] Parse test names and tags / Test spec from empty string should have no filters (0 ms) | |
[ RUN ] Parse test names and tags / Test spec from just a comma should have no filters |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from conans import ConanFile, CMake, tools | |
class GooglebenchmarkConan(ConanFile): | |
name = "google-benchmark" | |
version = "1.2.0" | |
license = "<Put the package license here>" | |
url = "<Package recipe repository url here, for issues about the package>" | |
description = "<Description of Googlebenchmark here>" | |
settings = "os", "compiler", "build_type", "arch" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Дана последовательность чисел. Известно, что больше половины из них равны числу X. | |
Найти число X за один проход по последовательности и с наименьшим объёмом используемой памяти. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Remaps are suspended by default | |
Suspend On | |
; Press CapsLock to toggle remaps | |
~CapsLock:: | |
Suspend ; Mark this handler as not suspending | |
GetKeyState, state, CapsLock, T | |
if state = D | |
Suspend, Off |