Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
gyp /
generator /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
0
B
-rw-r--r--
2022-04-04 16:54
analyzer.py
29.92
KB
-rw-r--r--
2022-04-04 16:54
cmake.py
44.89
KB
-rw-r--r--
2022-07-16 12:04
dump_dependency_json.py
3.38
KB
-rw-r--r--
2022-04-04 16:54
eclipse.py
16.6
KB
-rw-r--r--
2022-04-04 16:54
gypd.py
3.39
KB
-rw-r--r--
2022-04-04 16:54
gypsh.py
1.63
KB
-rw-r--r--
2022-04-04 16:54
make.py
90.42
KB
-rw-r--r--
2022-07-16 12:04
msvs.py
131.01
KB
-rw-r--r--
2022-04-04 16:54
msvs_test.py
1.05
KB
-rw-r--r--
2022-04-04 16:54
ninja.py
101.77
KB
-rw-r--r--
2022-07-16 12:04
ninja_test.py
1.73
KB
-rw-r--r--
2022-04-04 16:54
xcode.py
56.78
KB
-rw-r--r--
2022-04-04 16:54
xcode_test.py
645
B
-rw-r--r--
2022-04-04 16:54
Save
Rename
#!/usr/bin/env python # Copyright (c) 2012 Google Inc. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Unit tests for the ninja.py file. """ import gyp.generator.ninja as ninja import unittest import sys import TestCommon class TestPrefixesAndSuffixes(unittest.TestCase): def test_BinaryNamesWindows(self): # These cannot run on non-Windows as they require a VS installation to # correctly handle variable expansion. if sys.platform.startswith('win'): writer = ninja.NinjaWriter('foo', 'wee', '.', '.', 'build.ninja', '.', 'build.ninja', 'win') spec = { 'target_name': 'wee' } self.assertTrue(writer.ComputeOutputFileName(spec, 'executable'). endswith('.exe')) self.assertTrue(writer.ComputeOutputFileName(spec, 'shared_library'). endswith('.dll')) self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library'). endswith('.lib')) def test_BinaryNamesLinux(self): writer = ninja.NinjaWriter('foo', 'wee', '.', '.', 'build.ninja', '.', 'build.ninja', 'linux') spec = { 'target_name': 'wee' } self.assertTrue('.' not in writer.ComputeOutputFileName(spec, 'executable')) self.assertTrue(writer.ComputeOutputFileName(spec, 'shared_library'). startswith('lib')) self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library'). startswith('lib')) self.assertTrue(writer.ComputeOutputFileName(spec, 'shared_library'). endswith('.so')) self.assertTrue(writer.ComputeOutputFileName(spec, 'static_library'). endswith('.a')) if __name__ == '__main__': unittest.main()