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
#!/usr/bin/env python3 | |
import requests, base64 | |
from requests.auth import HTTPDigestAuth | |
from bs4 import BeautifulSoup | |
import urllib3 | |
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | |
user= '12345678' | |
password = 'secret' |
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
[alias] | |
cu = !git add -u && git commit | |
[core] | |
editor = vim | |
[diff] | |
tool = meld |
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
# Get the latest commit hash of the working branch | |
execute_process( | |
COMMAND git log -1 --format="%H %s" | |
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} | |
OUTPUT_VARIABLE GIT_COMMIT_HASH | |
OUTPUT_STRIP_TRAILING_WHITESPACE |
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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by gperftools configure 2.5.92, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ./configure | |
## --------- ## | |
## Platform. ## |
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
========================================= | |
gperftools 2.5.92: ./test-suite.log | |
========================================= | |
# TOTAL: 48 | |
# PASS: 44 | |
# SKIP: 0 | |
# XFAIL: 0 | |
# FAIL: 4 | |
# XPASS: 0 |
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
testuser@nshield-lin64-1:~/testuser_test/gperftools-2.5.91> make check | |
rm -f debugallocation_test.sh | |
cp -p ./src/tests/debugallocation_test.sh debugallocation_test.sh | |
rm -f tcmalloc_unittest.sh | |
cp -p ./src/tests/tcmalloc_unittest.sh tcmalloc_unittest.sh | |
rm -f sampling_test.sh | |
cp -p ./src/tests/sampling_test.sh sampling_test.sh | |
rm -f heap-profiler_unittest.sh | |
cp -p ./src/tests/heap-profiler_unittest.sh heap-profiler_unittest.sh |
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
========================================= | |
gperftools 2.5.91: ./test-suite.log | |
========================================= | |
# TOTAL: 48 | |
# PASS: 44 | |
# SKIP: 0 | |
# XFAIL: 0 | |
# FAIL: 4 | |
# XPASS: 0 |