Skip to content

Instantly share code, notes, and snippets.

@stuhood
Created March 12, 2019 22:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuhood/2d87abf9d08df80c9062ffcb93cff393 to your computer and use it in GitHub Desktop.
Save stuhood/2d87abf9d08df80c9062ffcb93cff393 to your computer and use it in GitHub Desktop.
_ CTypesIntegrationTest.test_ctypes_native_language_interop _
self = <pants_test.backend.python.tasks.native.test_ctypes_integration.CTypesIntegrationTest testMethod=test_ctypes_native_language_interop>
toolchain_variant = ToolchainVariant(value='gnu')
@_toolchain_variants
def test_ctypes_native_language_interop(self, toolchain_variant):
# TODO: consider making this mock_buildroot/run_pants_with_workdir into a
# PantsRunIntegrationTest method!
with self.mock_buildroot(
dirs_to_copy=[self._binary_interop_target_dir]) as buildroot, buildroot.pushd():
# Replace strict_deps=False with nothing so we can override it (because target values for this
# option take precedence over subsystem options).
orig_wrapped_math_build = read_file(self._wrapped_math_build_file, binary_mode=False)
without_strict_deps_wrapped_math_build = re.sub(
'strict_deps=False,', '', orig_wrapped_math_build)
safe_file_dump(self._wrapped_math_build_file, without_strict_deps_wrapped_math_build, mode='w')
# This should fail because it does not turn on strict_deps for a target which requires it.
pants_binary_strict_deps_failure = self.run_pants_with_workdir(
command=['binary', self._binary_target_with_interop],
# Explicitly set to True (although this is the default).
config={
'native-build-step': {
'toolchain_variant': toolchain_variant.value,
},
# TODO(#6848): don't make it possible to forget to add the toolchain_variant option!
'native-build-settings': {
'strict_deps': True,
},
},
workdir=os.path.join(buildroot.new_buildroot, '.pants.d'),
build_root=buildroot.new_buildroot)
self.assert_failure(pants_binary_strict_deps_failure)
self.assertIn(toolchain_variant.resolve_for_enum_variant({
'gnu': "fatal error: some_math.h: No such file or directory",
'llvm': "fatal error: 'some_math.h' file not found",
}),
> pants_binary_strict_deps_failure.stdout_data)
E AssertionError: 'fatal error: some_math.h: No such file or directory' not found in ''
.pants.d/pyprep/sources/3d34e4987ae17109a6d3ccbac26855914780e021/pants_test/backend/python/tasks/native/test_ctypes_integration.py:151: AssertionError
-------------- Captured stdout call --------------
logs/exceptions.14612.log +++
logs/exceptions.14612.log ---
logs/exceptions.7693.log +++
logs/exceptions.7693.log ---
logs/exceptions.13370.log +++
logs/exceptions.13370.log ---
logs/exceptions.18804.log +++
logs/exceptions.18804.log ---
logs/exceptions.8084.log +++
logs/exceptions.8084.log ---
logs/exceptions.16937.log +++
logs/exceptions.16937.log ---
logs/exceptions.7725.log +++
logs/exceptions.7725.log ---
logs/exceptions.8472.log +++
logs/exceptions.8472.log ---
logs/exceptions.11113.log +++
logs/exceptions.11113.log ---
logs/exceptions.15102.log +++
logs/exceptions.15102.log ---
logs/exceptions.9194.log +++
logs/exceptions.9194.log ---
logs/exceptions.13867.log +++
logs/exceptions.13867.log ---
logs/exceptions.10232.log +++
logs/exceptions.10232.log ---
logs/exceptions.8345.log +++
logs/exceptions.8345.log ---
logs/exceptions.16360.log +++
logs/exceptions.16360.log ---
logs/exceptions.15001.log +++
logs/exceptions.15001.log ---
logs/exceptions.18106.log +++
logs/exceptions.18106.log ---
logs/exceptions.13693.log +++
logs/exceptions.13693.log ---
logs/exceptions.11788.log +++
logs/exceptions.11788.log ---
logs/exceptions.10375.log +++
logs/exceptions.10375.log ---
logs/exceptions.13050.log +++
logs/exceptions.13050.log ---
logs/exceptions.7018.log +++
logs/exceptions.7018.log ---
logs/exceptions.8126.log +++
logs/exceptions.8126.log ---
logs/exceptions.9295.log +++
logs/exceptions.9295.log ---
logs/exceptions.8162.log +++
logs/exceptions.8162.log ---
logs/exceptions.12254.log +++
logs/exceptions.12254.log ---
logs/exceptions.8631.log +++
logs/exceptions.8631.log ---
logs/exceptions.16968.log +++
logs/exceptions.16968.log ---
logs/exceptions.10263.log +++
logs/exceptions.10263.log ---
logs/exceptions.7627.log +++
logs/exceptions.7627.log ---
logs/exceptions.12660.log +++
logs/exceptions.12660.log ---
logs/exceptions.12223.log +++
logs/exceptions.12223.log ---
logs/exceptions.18885.log +++
logs/exceptions.18885.log ---
logs/exceptions.10586.log +++
logs/exceptions.10586.log ---
logs/exceptions.15981.log +++
logs/exceptions.15981.log ---
logs/exceptions.5926.log +++
logs/exceptions.5926.log >>> timestamp: 2019-03-07T01:33:11.440512
logs/exceptions.5926.log >>> process title: pantsd [/home/travis/build/pantsbuild/pants]
logs/exceptions.5926.log >>> sys.argv: ['./pants.pex', '--tag=+integration', 'list', 'tests/python::']
logs/exceptions.5926.log >>> pid: 5926
logs/exceptions.5926.log >>> Signal 15 was raised. Exiting with failure. (backtrace omitted)
logs/exceptions.5926.log >>>
logs/exceptions.5926.log ---
logs/exceptions.11961.log +++
logs/exceptions.11961.log ---
logs/exceptions.18934.log +++
logs/exceptions.18934.log >>> timestamp: 2019-03-07T02:09:10.126517
logs/exceptions.18934.log >>> process title: pantsd [/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d]
logs/exceptions.18934.log >>> sys.argv: ['/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/pants.pex', '--no-pantsrc', '--pants-workdir=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d', '--kill-nailguns', '--print-exception-stacktrace=True', '--pants-config-files=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d/pants.ini', 'binary', 'testprojects/src/python/python_distribution/ctypes_interop:bin']
logs/exceptions.18934.log >>> pid: 18934
logs/exceptions.18934.log >>> Exception caught: (pants.pantsd.pants_daemon.RuntimeFailure)
logs/exceptions.18934.log >>> File ".bootstrap/_pex/pex.py", line 349, in execute
logs/exceptions.18934.log >>> exit_code = self._wrap_coverage(self._wrap_profiling, self._execute)
logs/exceptions.18934.log >>> File ".bootstrap/_pex/pex.py", line 281, in _wrap_coverage
logs/exceptions.18934.log >>> return runner(*args)
logs/exceptions.18934.log >>> File ".bootstrap/_pex/pex.py", line 312, in _wrap_profiling
logs/exceptions.18934.log >>> return runner(*args)
logs/exceptions.18934.log >>> File ".bootstrap/_pex/pex.py", line 394, in _execute
logs/exceptions.18934.log >>> return self.execute_entry(self._pex_info.entry_point)
logs/exceptions.18934.log >>> File ".bootstrap/_pex/pex.py", line 506, in execute_entry
logs/exceptions.18934.log >>> return runner(entry_point)
logs/exceptions.18934.log >>> File ".bootstrap/_pex/pex.py", line 528, in execute_pkg_resources
logs/exceptions.18934.log >>> return runner()
logs/exceptions.18934.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 87, in main
logs/exceptions.18934.log >>> PantsLoader.run()
logs/exceptions.18934.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 83, in run
logs/exceptions.18934.log >>> cls.load_and_execute(entrypoint)
logs/exceptions.18934.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 76, in load_and_execute
logs/exceptions.18934.log >>> entrypoint_main()
logs/exceptions.18934.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 447, in launch
logs/exceptions.18934.log >>> PantsDaemon.Factory.create(OptionsBootstrapper.create()).run_sync()
logs/exceptions.18934.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 391, in run_sync
logs/exceptions.18934.log >>> self._run_services(self._services)
logs/exceptions.18934.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 351, in _run_services
logs/exceptions.18934.log >>> raise PantsDaemon.RuntimeFailure('service failure for {}, shutting down!'.format(service))
logs/exceptions.18934.log >>>
logs/exceptions.18934.log >>> Exception message: service failure for <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f5031ac5198>, shutting down!
logs/exceptions.18934.log >>>
logs/exceptions.18934.log ---
logs/exceptions.17204.log +++
logs/exceptions.17204.log ---
logs/exceptions.18283.log +++
logs/exceptions.18283.log ---
logs/exceptions.16618.log +++
logs/exceptions.16618.log ---
logs/exceptions.12958.log +++
logs/exceptions.12958.log ---
logs/exceptions.9911.log +++
logs/exceptions.9911.log ---
logs/exceptions.15637.log +++
logs/exceptions.15637.log ---
logs/exceptions.7289.log +++
logs/exceptions.7289.log ---
logs/exceptions.14117.log +++
logs/exceptions.14117.log ---
logs/exceptions.14403.log +++
logs/exceptions.14403.log ---
logs/exceptions.11547.log +++
logs/exceptions.11547.log ---
logs/exceptions.11992.log +++
logs/exceptions.11992.log ---
logs/exceptions.14218.log +++
logs/exceptions.14218.log ---
logs/exceptions.8620.log +++
logs/exceptions.8620.log ---
logs/exceptions.15091.log +++
logs/exceptions.15091.log ---
logs/exceptions.6411.log +++
logs/exceptions.6411.log ---
logs/exceptions.8418.log +++
logs/exceptions.8418.log ---
logs/exceptions.18095.log +++
logs/exceptions.18095.log ---
logs/exceptions.8798.log +++
logs/exceptions.8798.log ---
logs/exceptions.18772.log +++
logs/exceptions.18772.log ---
logs/exceptions.15827.log +++
logs/exceptions.15827.log ---
logs/exceptions.6922.log +++
logs/exceptions.6922.log ---
logs/exceptions.18816.log +++
logs/exceptions.18816.log ---
logs/exceptions.12062.log +++
logs/exceptions.12062.log ---
logs/exceptions.9922.log +++
logs/exceptions.9922.log ---
logs/exceptions.9183.log +++
logs/exceptions.9183.log ---
logs/exceptions.14128.log +++
logs/exceptions.14128.log ---
logs/exceptions.7572.log +++
logs/exceptions.7572.log ---
logs/exceptions.14840.log +++
logs/exceptions.14840.log ---
logs/exceptions.11804.log +++
logs/exceptions.11804.log ---
logs/exceptions.14229.log +++
logs/exceptions.14229.log ---
logs/exceptions.12051.log +++
logs/exceptions.12051.log ---
logs/exceptions.8334.log +++
logs/exceptions.8334.log ---
logs/exceptions.12347.log +++
logs/exceptions.12347.log ---
logs/exceptions.16565.log +++
logs/exceptions.16565.log ---
logs/exceptions.10364.log +++
logs/exceptions.10364.log ---
logs/exceptions.17021.log +++
logs/exceptions.17021.log ---
logs/exceptions.10194.log +++
logs/exceptions.10194.log ---
logs/exceptions.13987.log +++
logs/exceptions.13987.log ---
logs/exceptions.15470.log +++
logs/exceptions.15470.log ---
logs/exceptions.15992.log +++
logs/exceptions.15992.log ---
logs/exceptions.9543.log +++
logs/exceptions.9543.log ---
logs/exceptions.16893.log +++
logs/exceptions.16893.log ---
logs/exceptions.10059.log +++
logs/exceptions.10059.log ---
logs/exceptions.8073.log +++
logs/exceptions.8073.log ---
logs/exceptions.15032.log +++
logs/exceptions.15032.log ---
logs/exceptions.6400.log +++
logs/exceptions.6400.log ---
logs/exceptions.18294.log +++
logs/exceptions.18294.log ---
logs/exceptions.7797.log +++
logs/exceptions.7797.log ---
logs/exceptions.5976.log +++
logs/exceptions.5976.log ---
logs/exceptions.10075.log +++
logs/exceptions.10075.log ---
logs/exceptions.17468.log +++
logs/exceptions.17468.log ---
logs/exceptions.16435.log +++
logs/exceptions.16435.log ---
logs/exceptions.17927.log +++
logs/exceptions.17927.log ---
logs/exceptions.10602.log +++
logs/exceptions.10602.log ---
logs/exceptions.14415.log +++
logs/exceptions.14415.log ---
logs/exceptions.11536.log +++
logs/exceptions.11536.log ---
logs/exceptions.7277.log +++
logs/exceptions.7277.log ---
logs/exceptions.17751.log +++
logs/exceptions.17751.log ---
logs/exceptions.10914.log +++
logs/exceptions.10914.log ---
logs/exceptions.15816.log +++
logs/exceptions.15816.log ---
logs/exceptions.15290.log +++
logs/exceptions.15290.log ---
logs/exceptions.9532.log +++
logs/exceptions.9532.log ---
logs/exceptions.12753.log +++
logs/exceptions.12753.log ---
logs/exceptions.17479.log +++
logs/exceptions.17479.log ---
logs/exceptions.17032.log +++
logs/exceptions.17032.log ---
logs/exceptions.18760.log +++
logs/exceptions.18760.log ---
logs/exceptions.11124.log +++
logs/exceptions.11124.log ---
logs/exceptions.13274.log +++
logs/exceptions.13274.log ---
logs/exceptions.8561.log +++
logs/exceptions.8561.log ---
logs/exceptions.7029.log +++
logs/exceptions.7029.log ---
logs/exceptions.16193.log +++
logs/exceptions.16193.log ---
logs/exceptions.17911.log +++
logs/exceptions.17911.log ---
logs/exceptions.8879.log +++
logs/exceptions.8879.log ---
logs/exceptions.13589.log +++
logs/exceptions.13589.log ---
logs/exceptions.17188.log +++
logs/exceptions.17188.log ---
logs/exceptions.16629.log +++
logs/exceptions.16629.log ---
logs/exceptions.log +++
logs/exceptions.log >>> timestamp: 2019-03-07T01:33:11.440512
logs/exceptions.log >>> process title: pantsd [/home/travis/build/pantsbuild/pants]
logs/exceptions.log >>> sys.argv: ['./pants.pex', '--tag=+integration', 'list', 'tests/python::']
logs/exceptions.log >>> pid: 5926
logs/exceptions.log >>> Signal 15 was raised. Exiting with failure. (backtrace omitted)
logs/exceptions.log >>>
logs/exceptions.log >>> timestamp: 2019-03-07T02:09:10.126517
logs/exceptions.log >>> process title: pantsd [/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d]
logs/exceptions.log >>> sys.argv: ['/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/pants.pex', '--no-pantsrc', '--pants-workdir=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d', '--kill-nailguns', '--print-exception-stacktrace=True', '--pants-config-files=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d/pants.ini', 'binary', 'testprojects/src/python/python_distribution/ctypes_interop:bin']
logs/exceptions.log >>> pid: 18934
logs/exceptions.log >>> Exception caught: (pants.pantsd.pants_daemon.RuntimeFailure)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 349, in execute
logs/exceptions.log >>> exit_code = self._wrap_coverage(self._wrap_profiling, self._execute)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 281, in _wrap_coverage
logs/exceptions.log >>> return runner(*args)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 312, in _wrap_profiling
logs/exceptions.log >>> return runner(*args)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 394, in _execute
logs/exceptions.log >>> return self.execute_entry(self._pex_info.entry_point)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 506, in execute_entry
logs/exceptions.log >>> return runner(entry_point)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 528, in execute_pkg_resources
logs/exceptions.log >>> return runner()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 87, in main
logs/exceptions.log >>> PantsLoader.run()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 83, in run
logs/exceptions.log >>> cls.load_and_execute(entrypoint)
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 76, in load_and_execute
logs/exceptions.log >>> entrypoint_main()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 447, in launch
logs/exceptions.log >>> PantsDaemon.Factory.create(OptionsBootstrapper.create()).run_sync()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 391, in run_sync
logs/exceptions.log >>> self._run_services(self._services)
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 351, in _run_services
logs/exceptions.log >>> raise PantsDaemon.RuntimeFailure('service failure for {}, shutting down!'.format(service))
logs/exceptions.log >>>
logs/exceptions.log >>> Exception message: service failure for <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f5031ac5198>, shutting down!
logs/exceptions.log >>>
logs/exceptions.log >>> timestamp: 2019-03-07T02:09:10.137327
logs/exceptions.log >>> process title: python3.6 /home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/pants.pex --no-pantsrc --pants-workdir=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d --kill-nailguns --print-exception-stacktrace=True --pants-config-files=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d/pants.ini binary testprojects/src/python/python_distribution/ctypes_interop:bin
logs/exceptions.log >>> sys.argv: ['/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/pants.pex', '--no-pantsrc', '--pants-workdir=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d', '--kill-nailguns', '--print-exception-stacktrace=True', '--pants-config-files=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d/pants.ini', 'binary', 'testprojects/src/python/python_distribution/ctypes_interop:bin']
logs/exceptions.log >>> pid: 18903
logs/exceptions.log >>> Exception caught: (pants.bin.remote_pants_runner.Terminated)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 349, in execute
logs/exceptions.log >>> exit_code = self._wrap_coverage(self._wrap_profiling, self._execute)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 281, in _wrap_coverage
logs/exceptions.log >>> return runner(*args)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 312, in _wrap_profiling
logs/exceptions.log >>> return runner(*args)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 394, in _execute
logs/exceptions.log >>> return self.execute_entry(self._pex_info.entry_point)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 506, in execute_entry
logs/exceptions.log >>> return runner(entry_point)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 528, in execute_pkg_resources
logs/exceptions.log >>> return runner()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 87, in main
logs/exceptions.log >>> PantsLoader.run()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 83, in run
logs/exceptions.log >>> cls.load_and_execute(entrypoint)
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 76, in load_and_execute
logs/exceptions.log >>> entrypoint_main()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_exe.py", line 39, in main
logs/exceptions.log >>> PantsRunner(exiter, start_time=start_time).run()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_runner.py", line 48, in run
logs/exceptions.log >>> return RemotePantsRunner(self._exiter, self._args, self._env, options_bootstrapper).run()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/remote_pants_runner.py", line 190, in run
logs/exceptions.log >>> self._run_pants_with_retry(pantsd_handle)
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/remote_pants_runner.py", line 135, in _run_pants_with_retry
logs/exceptions.log >>> raise_with_traceback(self._extract_remote_exception(pantsd_handle.pid, e))
logs/exceptions.log >>> File "/home/travis/.pex/install/future-0.17.1-py3-none-any.whl.2340a853e2552f26375b3f585f1e518cbc69e8b4/future-0.17.1-py3-none-any.whl/future/utils/__init__.py", line 421, in raise_with_traceback
logs/exceptions.log >>> raise exc.with_traceback(traceback)
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/remote_pants_runner.py", line 114, in _run_pants_with_retry
logs/exceptions.log >>> return self._connect_and_execute(pantsd_handle.port)
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/remote_pants_runner.py", line 155, in _connect_and_execute
logs/exceptions.log >>> result = client.execute(self.PANTS_COMMAND, *self._args, **modified_env)
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/java/nailgun_client.py", line 287, in execute
logs/exceptions.log >>> traceback=sys.exc_info()[2]
logs/exceptions.log >>>
logs/exceptions.log >>> Exception message: abruptly lost active connection to pantsd runner: NailgunError('Problem talking to nailgun server (address: 127.0.0.1:44349, remote_pid=<remote PID chunk not yet received!>, remote_pgrp=<remote PGRP chunk not yet received!>): TruncatedHeaderError("Failed to read nailgun chunk header (TruncatedRead(\'Expected 5 bytes before socket shutdown, instead received 0\',)).",)', TruncatedHeaderError("Failed to read nailgun chunk header (TruncatedRead('Expected 5 bytes before socket shutdown, instead received 0',)).",))
logs/exceptions.log >>> Remote exception:
logs/exceptions.log >>> timestamp: 2019-03-07T02:09:10.126517
logs/exceptions.log >>> process title: pantsd [/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d]
logs/exceptions.log >>> sys.argv: ['/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/pants.pex', '--no-pantsrc', '--pants-workdir=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d', '--kill-nailguns', '--print-exception-stacktrace=True', '--pants-config-files=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d/pants.ini', 'binary', 'testprojects/src/python/python_distribution/ctypes_interop:bin']
logs/exceptions.log >>> pid: 18934
logs/exceptions.log >>> Exception caught: (pants.pantsd.pants_daemon.RuntimeFailure)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 349, in execute
logs/exceptions.log >>> exit_code = self._wrap_coverage(self._wrap_profiling, self._execute)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 281, in _wrap_coverage
logs/exceptions.log >>> return runner(*args)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 312, in _wrap_profiling
logs/exceptions.log >>> return runner(*args)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 394, in _execute
logs/exceptions.log >>> return self.execute_entry(self._pex_info.entry_point)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 506, in execute_entry
logs/exceptions.log >>> return runner(entry_point)
logs/exceptions.log >>> File ".bootstrap/_pex/pex.py", line 528, in execute_pkg_resources
logs/exceptions.log >>> return runner()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 87, in main
logs/exceptions.log >>> PantsLoader.run()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 83, in run
logs/exceptions.log >>> cls.load_and_execute(entrypoint)
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 76, in load_and_execute
logs/exceptions.log >>> entrypoint_main()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 447, in launch
logs/exceptions.log >>> PantsDaemon.Factory.create(OptionsBootstrapper.create()).run_sync()
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 391, in run_sync
logs/exceptions.log >>> self._run_services(self._services)
logs/exceptions.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 351, in _run_services
logs/exceptions.log >>> raise PantsDaemon.RuntimeFailure('service failure for {}, shutting down!'.format(service))
logs/exceptions.log >>>
logs/exceptions.log >>> Exception message: service failure for <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f5031ac5198>, shutting down!
logs/exceptions.log >>>
logs/exceptions.log >>>
logs/exceptions.log >>>
logs/exceptions.log ---
logs/exceptions.7638.log +++
logs/exceptions.7638.log ---
logs/exceptions.15459.log +++
logs/exceptions.15459.log ---
logs/exceptions.7736.log +++
logs/exceptions.7736.log ---
logs/exceptions.8910.log +++
logs/exceptions.8910.log ---
logs/exceptions.11319.log +++
logs/exceptions.11319.log ---
logs/exceptions.14601.log +++
logs/exceptions.14601.log ---
logs/exceptions.16862.log +++
logs/exceptions.16862.log ---
logs/exceptions.16329.log +++
logs/exceptions.16329.log ---
logs/exceptions.8530.log +++
logs/exceptions.8530.log ---
logs/exceptions.11330.log +++
logs/exceptions.11330.log ---
logs/exceptions.15259.log +++
logs/exceptions.15259.log ---
logs/exceptions.8767.log +++
logs/exceptions.8767.log ---
logs/exceptions.18533.log +++
logs/exceptions.18533.log ---
logs/exceptions.18903.log +++
logs/exceptions.18903.log >>> timestamp: 2019-03-07T02:09:10.137327
logs/exceptions.18903.log >>> process title: python3.6 /home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/pants.pex --no-pantsrc --pants-workdir=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d --kill-nailguns --print-exception-stacktrace=True --pants-config-files=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d/pants.ini binary testprojects/src/python/python_distribution/ctypes_interop:bin
logs/exceptions.18903.log >>> sys.argv: ['/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/pants.pex', '--no-pantsrc', '--pants-workdir=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d', '--kill-nailguns', '--print-exception-stacktrace=True', '--pants-config-files=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d/pants.ini', 'binary', 'testprojects/src/python/python_distribution/ctypes_interop:bin']
logs/exceptions.18903.log >>> pid: 18903
logs/exceptions.18903.log >>> Exception caught: (pants.bin.remote_pants_runner.Terminated)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 349, in execute
logs/exceptions.18903.log >>> exit_code = self._wrap_coverage(self._wrap_profiling, self._execute)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 281, in _wrap_coverage
logs/exceptions.18903.log >>> return runner(*args)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 312, in _wrap_profiling
logs/exceptions.18903.log >>> return runner(*args)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 394, in _execute
logs/exceptions.18903.log >>> return self.execute_entry(self._pex_info.entry_point)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 506, in execute_entry
logs/exceptions.18903.log >>> return runner(entry_point)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 528, in execute_pkg_resources
logs/exceptions.18903.log >>> return runner()
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 87, in main
logs/exceptions.18903.log >>> PantsLoader.run()
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 83, in run
logs/exceptions.18903.log >>> cls.load_and_execute(entrypoint)
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 76, in load_and_execute
logs/exceptions.18903.log >>> entrypoint_main()
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_exe.py", line 39, in main
logs/exceptions.18903.log >>> PantsRunner(exiter, start_time=start_time).run()
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_runner.py", line 48, in run
logs/exceptions.18903.log >>> return RemotePantsRunner(self._exiter, self._args, self._env, options_bootstrapper).run()
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/remote_pants_runner.py", line 190, in run
logs/exceptions.18903.log >>> self._run_pants_with_retry(pantsd_handle)
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/remote_pants_runner.py", line 135, in _run_pants_with_retry
logs/exceptions.18903.log >>> raise_with_traceback(self._extract_remote_exception(pantsd_handle.pid, e))
logs/exceptions.18903.log >>> File "/home/travis/.pex/install/future-0.17.1-py3-none-any.whl.2340a853e2552f26375b3f585f1e518cbc69e8b4/future-0.17.1-py3-none-any.whl/future/utils/__init__.py", line 421, in raise_with_traceback
logs/exceptions.18903.log >>> raise exc.with_traceback(traceback)
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/remote_pants_runner.py", line 114, in _run_pants_with_retry
logs/exceptions.18903.log >>> return self._connect_and_execute(pantsd_handle.port)
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/remote_pants_runner.py", line 155, in _connect_and_execute
logs/exceptions.18903.log >>> result = client.execute(self.PANTS_COMMAND, *self._args, **modified_env)
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/java/nailgun_client.py", line 287, in execute
logs/exceptions.18903.log >>> traceback=sys.exc_info()[2]
logs/exceptions.18903.log >>>
logs/exceptions.18903.log >>> Exception message: abruptly lost active connection to pantsd runner: NailgunError('Problem talking to nailgun server (address: 127.0.0.1:44349, remote_pid=<remote PID chunk not yet received!>, remote_pgrp=<remote PGRP chunk not yet received!>): TruncatedHeaderError("Failed to read nailgun chunk header (TruncatedRead(\'Expected 5 bytes before socket shutdown, instead received 0\',)).",)', TruncatedHeaderError("Failed to read nailgun chunk header (TruncatedRead('Expected 5 bytes before socket shutdown, instead received 0',)).",))
logs/exceptions.18903.log >>> Remote exception:
logs/exceptions.18903.log >>> timestamp: 2019-03-07T02:09:10.126517
logs/exceptions.18903.log >>> process title: pantsd [/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d]
logs/exceptions.18903.log >>> sys.argv: ['/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/pants.pex', '--no-pantsrc', '--pants-workdir=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d', '--kill-nailguns', '--print-exception-stacktrace=True', '--pants-config-files=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d/pants.ini', 'binary', 'testprojects/src/python/python_distribution/ctypes_interop:bin']
logs/exceptions.18903.log >>> pid: 18934
logs/exceptions.18903.log >>> Exception caught: (pants.pantsd.pants_daemon.RuntimeFailure)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 349, in execute
logs/exceptions.18903.log >>> exit_code = self._wrap_coverage(self._wrap_profiling, self._execute)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 281, in _wrap_coverage
logs/exceptions.18903.log >>> return runner(*args)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 312, in _wrap_profiling
logs/exceptions.18903.log >>> return runner(*args)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 394, in _execute
logs/exceptions.18903.log >>> return self.execute_entry(self._pex_info.entry_point)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 506, in execute_entry
logs/exceptions.18903.log >>> return runner(entry_point)
logs/exceptions.18903.log >>> File ".bootstrap/_pex/pex.py", line 528, in execute_pkg_resources
logs/exceptions.18903.log >>> return runner()
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 87, in main
logs/exceptions.18903.log >>> PantsLoader.run()
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 83, in run
logs/exceptions.18903.log >>> cls.load_and_execute(entrypoint)
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 76, in load_and_execute
logs/exceptions.18903.log >>> entrypoint_main()
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 447, in launch
logs/exceptions.18903.log >>> PantsDaemon.Factory.create(OptionsBootstrapper.create()).run_sync()
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 391, in run_sync
logs/exceptions.18903.log >>> self._run_services(self._services)
logs/exceptions.18903.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 351, in _run_services
logs/exceptions.18903.log >>> raise PantsDaemon.RuntimeFailure('service failure for {}, shutting down!'.format(service))
logs/exceptions.18903.log >>>
logs/exceptions.18903.log >>> Exception message: service failure for <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f5031ac5198>, shutting down!
logs/exceptions.18903.log >>>
logs/exceptions.18903.log >>>
logs/exceptions.18903.log >>>
logs/exceptions.18903.log ---
logs/exceptions.7561.log +++
logs/exceptions.7561.log ---
logs/exceptions.9713.log +++
logs/exceptions.9713.log ---
logs/exceptions.10883.log +++
logs/exceptions.10883.log ---
logs/exceptions.6933.log +++
logs/exceptions.6933.log ---
logs/exceptions.5895.log +++
logs/exceptions.5895.log ---
logs/exceptions.17374.log +++
logs/exceptions.17374.log ---
logs/exceptions.8387.log +++
logs/exceptions.8387.log ---
logs/exceptions.9370.log +++
logs/exceptions.9370.log ---
logs/exceptions.14852.log +++
logs/exceptions.14852.log ---
logs/exceptions.15626.log +++
logs/exceptions.15626.log ---
logs/exceptions.7808.log +++
logs/exceptions.7808.log ---
logs/exceptions.8483.log +++
logs/exceptions.8483.log ---
logs/exceptions.9381.log +++
logs/exceptions.9381.log ---
logs/exceptions.17740.log +++
logs/exceptions.17740.log ---
logs/exceptions.18522.log +++
logs/exceptions.18522.log ---
logs/exceptions.16424.log +++
logs/exceptions.16424.log ---
logs/exceptions.9702.log +++
logs/exceptions.9702.log ---
logs/exceptions.13704.log +++
logs/exceptions.13704.log ---
logs/exceptions.16204.log +++
logs/exceptions.16204.log ---
pantsd/pantsd.log +++
pantsd/pantsd.log >>> I0307 01:31:32.915781 5926 pants_daemon.py:379] pantsd starting, log level is INFO
pantsd/pantsd.log >>> I0307 01:31:32.916252 5926 pants_daemon.py:315] setting up service <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f9c763067f0>
pantsd/pantsd.log >>> I0307 01:31:32.916345 5926 pants_daemon.py:315] setting up service <pants.pantsd.service.scheduler_service.SchedulerService object at 0x7f9c76310c50>
pantsd/pantsd.log >>> I0307 01:31:32.916412 5926 scheduler_service.py:81] watching invalidating files: set()
pantsd/pantsd.log >>> I0307 01:31:32.916473 5926 pants_daemon.py:315] setting up service <pants.pantsd.service.pailgun_service.PailgunService object at 0x7f9c76315908>
pantsd/pantsd.log >>> I0307 01:31:32.916522 5926 pants_daemon.py:315] setting up service <pants.pantsd.service.store_gc_service.StoreGCService object at 0x7f9c763157f0>
pantsd/pantsd.log >>> I0307 01:31:32.916638 5926 pants_daemon.py:335] starting service <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f9c763067f0>
pantsd/pantsd.log >>> I0307 01:31:32.916971 5926 pants_daemon.py:335] starting service <pants.pantsd.service.scheduler_service.SchedulerService object at 0x7f9c76310c50>
pantsd/pantsd.log >>> I0307 01:31:32.918075 5926 pants_daemon.py:335] starting service <pants.pantsd.service.pailgun_service.PailgunService object at 0x7f9c76315908>
pantsd/pantsd.log >>> I0307 01:31:32.918301 5926 pailgun_service.py:69] starting pailgun server on port 35565
pantsd/pantsd.log >>> I0307 01:31:32.918467 5926 pants_daemon.py:335] starting service <pants.pantsd.service.store_gc_service.StoreGCService object at 0x7f9c763157f0>
pantsd/pantsd.log >>> I0307 01:31:32.975155 5926 pailgun_server.py:72] handling pailgun request: `./pants --tag=+integration list tests/python::`
pantsd/pantsd.log >>> I0307 01:31:33.098139 5926 watchman.py:185] confirmed watchman subscription: {'clock': 'c:1551922287:5907:1:4', 'subscribe': 'all_files', 'version': '4.9.1'}
pantsd/pantsd.log >>> I0307 01:31:33.125471 5926 scheduler_service.py:89] enqueuing 5016 changes for subscription all_files
pantsd/pantsd.log >>> I0307 01:31:33.142510 5926 watchman.py:185] confirmed watchman subscription: {'clock': 'c:1551922287:5907:1:5', 'subscribe': 'pantsd_pid', 'version': '4.9.1'}
pantsd/pantsd.log >>> I0307 01:31:33.143174 5926 scheduler_service.py:89] enqueuing 1 changes for subscription pantsd_pid
pantsd/pantsd.log >>> I0307 01:31:35.726065 5926 pailgun_server.py:81] pailgun request completed: `./pants --tag=+integration list tests/python::`
pantsd/pantsd.log >>> I0307 01:31:39.810656 5926 pailgun_server.py:72] handling pailgun request: `./pants --tag=+integration test.pytest --test-pytest-test-shard=1/19 tests/python/pants_test/backend/codegen/antlr/java:integration tests/python/pants_test/backend/codegen/antlr/python:integration tests/python/pants_test/backend/codegen/protobuf/java:integration tests/python/pants_test/backend/codegen/wire/java:integration tests/python/pants_test/backend/docgen/tasks:markdown_to_html_integration tests/python/pants_test/backend/graph_info/tasks:cloc_integration tests/python/pants_test/backend/graph_info/tasks:paths_integration tests/python/pants_test/backend/jvm:integration tests/python/pants_test/backend/jvm/subsystems:incomplete_custom_scala tests/python/pants_test/backend/jvm/subsystems:jar_dependency_management_integration tests/python/pants_test/backend/jvm/subsystems:shader_integration tests/python/pants_test/backend/jvm/targets:jar_dependency_integration tests/python/pants_test/backend/jvm/tasks:benchmark_run_integration tests/python/pants_test/backend/jvm/tasks:binary_create_integration tests/python/pants_test/backend/jvm/tasks:bootstrap_jvm_tools_integration tests/python/pants_test/backend/jvm/tasks:checkstyle_integration tests/python/pants_test/backend/jvm/tasks:classmap_integration tests/python/pants_test/backend/jvm/tasks:coursier_resolve_integration tests/python/pants_test/backend/jvm/tasks:export_classpath_integration tests/python/pants_test/backend/jvm/tasks:intransitive_integration tests/python/pants_test/backend/jvm/tasks:ivy_outdated_integration tests/python/pants_test/backend/jvm/tasks:ivy_resolve_integration tests/python/pants_test/backend/jvm/tasks:jar_publish_integration tests/python/pants_test/backend/jvm/tasks:junit_run_integration tests/python/pants_test/backend/jvm/tasks:junit_tests_concurrency_integration tests/python/pants_test/backend/jvm/tasks:junit_tests_integration tests/python/pants_test/backend/jvm/tasks:jvm_bundle_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile:declared_deps_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile:dep_exports_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:cache_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/javac:javac_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:java_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:javac_plugin_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:zinc_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:zinc_compile_jvm_platform_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile:missing_dependency_finder_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/rsc:rsc_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/scala:scalac_plugin_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/zinc:zinc_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/zinc:zinc_compile_integration_with_zjars tests/python/pants_test/backend/jvm/tasks:jvm_dependency_usage_integration tests/python/pants_test/backend/jvm/tasks:jvm_platform_analysis_integration tests/python/pants_test/backend/jvm/tasks:jvm_prep_command_integration tests/python/pants_test/backend/jvm/tasks:jvm_run_integration tests/python/pants_test/backend/jvm/tasks:scalafix tests/python/pants_test/backend/jvm/tasks:scala_repl_integration tests/python/pants_test/backend/jvm/tasks:scope_provided_integration tests/python/pants_test/backend/jvm/tasks:scope_runtime_integration tests/python/pants_test/backend/jvm/tasks:scope_test_integration tests/python/pants_test/backend/project_info/tasks:export_integration tests/python/pants_test/backend/python:integration tests/python/pants_test/backend/python/tasks/native:integration tests/python/pants_test/base:exception_sink_integration tests/python/pants_test/base:exclude_target_regexp_integration tests/python/pants_test/base:exiter_integration tests/python/pants_test/bin:bin tests/python/pants_test/build_graph:build_graph_integration tests/python/pants_test/build_graph:intermediate_target_integration tests/python/pants_test/build_graph:subproject_integration tests/python/pants_test/cache:cache_cleanup_integration tests/python/pants_test/core_tasks:deferred_sources_mapper_integration tests/python/pants_test/core_tasks:prep_command_integration tests/python/pants_test/core_tasks:substitute_target_aliases_integration tests/python/pants_test/engine/legacy:build_ignore_integration tests/python/pants_test/engine/legacy:bundle_integration tests/python/pants_test/engine/legacy:changed_integration tests/python/pants_test/engine/legacy:dependees_integration tests/python/pants_test/engine/legacy:dependencies_integration tests/python/pants_test/engine/legacy:filedeps_integration tests/python/pants_test/engine/legacy:filemap_integration tests/python/pants_test/engine/legacy:graph_integration tests/python/pants_test/engine/legacy:list_integration tests/python/pants_test/engine/legacy:list_owners_integration tests/python/pants_test/engine/legacy:owners_integration tests/python/pants_test/engine/legacy:pants_engine_integration tests/python/pants_test/engine:scheduler_integration tests/python/pants_test/goal:run_tracker_integration tests/python/pants_test/help:help_integration tests/python/pants_test/invalidation:strict_deps_invalidation_integration tests/python/pants_test/java/distribution:distribution_integration tests/python/pants_test/java:nailgun_integration tests/python/pants_test/logging:test_native_engine_logging tests/python/pants_test/logging:test_workunit_label tests/python/pants_test/option:options_integration tests/python/pants_test/pantsd:pantsd_integration tests/python/pants_test/projects:testprojects_integration tests/python/pants_test/releases:releases tests/python/pants_test/reporting:reporting_integration tests/python/pants_test/rules:test_integration tests/python/pants_test/targets:jvm_app_integration tests/python/pants_test/targets:scala_library_integration tests/python/pants_test/targets:unknown_arguments_integration tests/python/pants_test/task:goal_options_mixin_integration tests/python/pants_test/tasks:bootstrap_jvm_tools_integration tests/python/pants_test/tasks:changed_target_integration tests/python/pants_test/tasks:clean_all_integration tests/python/pants_test/tasks:scalastyle_integration -- -v --duration=3`
pantsd/pantsd.log >>> I0307 01:31:39.975011 5926 pailgun_server.py:81] pailgun request completed: `./pants --tag=+integration test.pytest --test-pytest-test-shard=1/19 tests/python/pants_test/backend/codegen/antlr/java:integration tests/python/pants_test/backend/codegen/antlr/python:integration tests/python/pants_test/backend/codegen/protobuf/java:integration tests/python/pants_test/backend/codegen/wire/java:integration tests/python/pants_test/backend/docgen/tasks:markdown_to_html_integration tests/python/pants_test/backend/graph_info/tasks:cloc_integration tests/python/pants_test/backend/graph_info/tasks:paths_integration tests/python/pants_test/backend/jvm:integration tests/python/pants_test/backend/jvm/subsystems:incomplete_custom_scala tests/python/pants_test/backend/jvm/subsystems:jar_dependency_management_integration tests/python/pants_test/backend/jvm/subsystems:shader_integration tests/python/pants_test/backend/jvm/targets:jar_dependency_integration tests/python/pants_test/backend/jvm/tasks:benchmark_run_integration tests/python/pants_test/backend/jvm/tasks:binary_create_integration tests/python/pants_test/backend/jvm/tasks:bootstrap_jvm_tools_integration tests/python/pants_test/backend/jvm/tasks:checkstyle_integration tests/python/pants_test/backend/jvm/tasks:classmap_integration tests/python/pants_test/backend/jvm/tasks:coursier_resolve_integration tests/python/pants_test/backend/jvm/tasks:export_classpath_integration tests/python/pants_test/backend/jvm/tasks:intransitive_integration tests/python/pants_test/backend/jvm/tasks:ivy_outdated_integration tests/python/pants_test/backend/jvm/tasks:ivy_resolve_integration tests/python/pants_test/backend/jvm/tasks:jar_publish_integration tests/python/pants_test/backend/jvm/tasks:junit_run_integration tests/python/pants_test/backend/jvm/tasks:junit_tests_concurrency_integration tests/python/pants_test/backend/jvm/tasks:junit_tests_integration tests/python/pants_test/backend/jvm/tasks:jvm_bundle_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile:declared_deps_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile:dep_exports_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:cache_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/javac:javac_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:java_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:javac_plugin_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:zinc_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/java:zinc_compile_jvm_platform_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile:missing_dependency_finder_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/rsc:rsc_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/scala:scalac_plugin_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/zinc:zinc_compile_integration tests/python/pants_test/backend/jvm/tasks/jvm_compile/zinc:zinc_compile_integration_with_zjars tests/python/pants_test/backend/jvm/tasks:jvm_dependency_usage_integration tests/python/pants_test/backend/jvm/tasks:jvm_platform_analysis_integration tests/python/pants_test/backend/jvm/tasks:jvm_prep_command_integration tests/python/pants_test/backend/jvm/tasks:jvm_run_integration tests/python/pants_test/backend/jvm/tasks:scalafix tests/python/pants_test/backend/jvm/tasks:scala_repl_integration tests/python/pants_test/backend/jvm/tasks:scope_provided_integration tests/python/pants_test/backend/jvm/tasks:scope_runtime_integration tests/python/pants_test/backend/jvm/tasks:scope_test_integration tests/python/pants_test/backend/project_info/tasks:export_integration tests/python/pants_test/backend/python:integration tests/python/pants_test/backend/python/tasks/native:integration tests/python/pants_test/base:exception_sink_integration tests/python/pants_test/base:exclude_target_regexp_integration tests/python/pants_test/base:exiter_integration tests/python/pants_test/bin:bin tests/python/pants_test/build_graph:build_graph_integration tests/python/pants_test/build_graph:intermediate_target_integration tests/python/pants_test/build_graph:subproject_integration tests/python/pants_test/cache:cache_cleanup_integration tests/python/pants_test/core_tasks:deferred_sources_mapper_integration tests/python/pants_test/core_tasks:prep_command_integration tests/python/pants_test/core_tasks:substitute_target_aliases_integration tests/python/pants_test/engine/legacy:build_ignore_integration tests/python/pants_test/engine/legacy:bundle_integration tests/python/pants_test/engine/legacy:changed_integration tests/python/pants_test/engine/legacy:dependees_integration tests/python/pants_test/engine/legacy:dependencies_integration tests/python/pants_test/engine/legacy:filedeps_integration tests/python/pants_test/engine/legacy:filemap_integration tests/python/pants_test/engine/legacy:graph_integration tests/python/pants_test/engine/legacy:list_integration tests/python/pants_test/engine/legacy:list_owners_integration tests/python/pants_test/engine/legacy:owners_integration tests/python/pants_test/engine/legacy:pants_engine_integration tests/python/pants_test/engine:scheduler_integration tests/python/pants_test/goal:run_tracker_integration tests/python/pants_test/help:help_integration tests/python/pants_test/invalidation:strict_deps_invalidation_integration tests/python/pants_test/java/distribution:distribution_integration tests/python/pants_test/java:nailgun_integration tests/python/pants_test/logging:test_native_engine_logging tests/python/pants_test/logging:test_workunit_label tests/python/pants_test/option:options_integration tests/python/pants_test/pantsd:pantsd_integration tests/python/pants_test/projects:testprojects_integration tests/python/pants_test/releases:releases tests/python/pants_test/reporting:reporting_integration tests/python/pants_test/rules:test_integration tests/python/pants_test/targets:jvm_app_integration tests/python/pants_test/targets:scala_library_integration tests/python/pants_test/targets:unknown_arguments_integration tests/python/pants_test/task:goal_options_mixin_integration tests/python/pants_test/tasks:bootstrap_jvm_tools_integration tests/python/pants_test/tasks:changed_target_integration tests/python/pants_test/tasks:clean_all_integration tests/python/pants_test/tasks:scalastyle_integration -- -v --duration=3`
pantsd/pantsd.log >>> timestamp: 2019-03-07T01:33:11.440716
pantsd/pantsd.log >>> Signal 15 was raised. Exiting with failure. (backtrace omitted)
pantsd/pantsd.log >>>
pantsd/pantsd.log >>>
pantsd/pantsd.log >>> I0307 02:09:06.758985 18934 pants_daemon.py:379] pantsd starting, log level is INFO
pantsd/pantsd.log >>> I0307 02:09:06.762024 18934 pants_daemon.py:315] setting up service <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f5031ac5198>
pantsd/pantsd.log >>> I0307 02:09:06.762182 18934 pants_daemon.py:315] setting up service <pants.pantsd.service.scheduler_service.SchedulerService object at 0x7f5031ac53c8>
pantsd/pantsd.log >>> I0307 02:09:06.762309 18934 scheduler_service.py:81] watching invalidating files: set()
pantsd/pantsd.log >>> I0307 02:09:06.762412 18934 pants_daemon.py:315] setting up service <pants.pantsd.service.pailgun_service.PailgunService object at 0x7f5031ad7390>
pantsd/pantsd.log >>> I0307 02:09:06.762505 18934 pants_daemon.py:315] setting up service <pants.pantsd.service.store_gc_service.StoreGCService object at 0x7f5031ad70f0>
pantsd/pantsd.log >>> I0307 02:09:06.762770 18934 pants_daemon.py:335] starting service <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f5031ac5198>
pantsd/pantsd.log >>> I0307 02:09:06.763136 18934 pants_daemon.py:335] starting service <pants.pantsd.service.scheduler_service.SchedulerService object at 0x7f5031ac53c8>
pantsd/pantsd.log >>> I0307 02:09:06.763637 18934 pants_daemon.py:335] starting service <pants.pantsd.service.pailgun_service.PailgunService object at 0x7f5031ad7390>
pantsd/pantsd.log >>> I0307 02:09:06.764036 18934 pailgun_service.py:69] starting pailgun server on port 44349
pantsd/pantsd.log >>> I0307 02:09:06.764272 18934 pants_daemon.py:335] starting service <pants.pantsd.service.store_gc_service.StoreGCService object at 0x7f5031ad70f0>
pantsd/pantsd.log >>> I0307 02:09:06.822089 18934 pailgun_server.py:72] handling pailgun request: `./pants --no-pantsrc --pants-workdir=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d --kill-nailguns --print-exception-stacktrace=True --pants-config-files=/home/travis/build/pantsbuild/pants/.pants.d/tmp/tmpycpfasgt.pants.d/.pants.d/pants.ini binary testprojects/src/python/python_distribution/ctypes_interop:bin`
pantsd/pantsd.log >>> I0307 02:09:10.123912 18934 pants_daemon.py:266] terminating pantsd service: <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f5031ac5198>
pantsd/pantsd.log >>> I0307 02:09:10.124209 18934 pants_daemon.py:266] terminating pantsd service: <pants.pantsd.service.scheduler_service.SchedulerService object at 0x7f5031ac53c8>
pantsd/pantsd.log >>> I0307 02:09:10.124835 18934 pants_daemon.py:266] terminating pantsd service: <pants.pantsd.service.pailgun_service.PailgunService object at 0x7f5031ad7390>
pantsd/pantsd.log >>> I0307 02:09:10.125087 18934 pailgun_service.py:80] pailgun service on port 44349 shutting down
pantsd/pantsd.log >>> I0307 02:09:10.125297 18934 pants_daemon.py:266] terminating pantsd service: <pants.pantsd.service.store_gc_service.StoreGCService object at 0x7f5031ad70f0>
pantsd/pantsd.log >>> I0307 02:09:10.125522 18934 pants_daemon.py:269] terminating pantsd
pantsd/pantsd.log >>> timestamp: 2019-03-07T02:09:10.127587
pantsd/pantsd.log >>> Exception caught: (pants.pantsd.pants_daemon.RuntimeFailure)
pantsd/pantsd.log >>> File ".bootstrap/_pex/pex.py", line 349, in execute
pantsd/pantsd.log >>> exit_code = self._wrap_coverage(self._wrap_profiling, self._execute)
pantsd/pantsd.log >>> File ".bootstrap/_pex/pex.py", line 281, in _wrap_coverage
pantsd/pantsd.log >>> return runner(*args)
pantsd/pantsd.log >>> File ".bootstrap/_pex/pex.py", line 312, in _wrap_profiling
pantsd/pantsd.log >>> return runner(*args)
pantsd/pantsd.log >>> File ".bootstrap/_pex/pex.py", line 394, in _execute
pantsd/pantsd.log >>> return self.execute_entry(self._pex_info.entry_point)
pantsd/pantsd.log >>> File ".bootstrap/_pex/pex.py", line 506, in execute_entry
pantsd/pantsd.log >>> return runner(entry_point)
pantsd/pantsd.log >>> File ".bootstrap/_pex/pex.py", line 528, in execute_pkg_resources
pantsd/pantsd.log >>> return runner()
pantsd/pantsd.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 87, in main
pantsd/pantsd.log >>> PantsLoader.run()
pantsd/pantsd.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 83, in run
pantsd/pantsd.log >>> cls.load_and_execute(entrypoint)
pantsd/pantsd.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/bin/pants_loader.py", line 76, in load_and_execute
pantsd/pantsd.log >>> entrypoint_main()
pantsd/pantsd.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 447, in launch
pantsd/pantsd.log >>> PantsDaemon.Factory.create(OptionsBootstrapper.create()).run_sync()
pantsd/pantsd.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 391, in run_sync
pantsd/pantsd.log >>> self._run_services(self._services)
pantsd/pantsd.log >>> File "/home/travis/.pex/code/664881330a1f06c6a7fb465ade0c3be2aa9d50ac/pants/pantsd/pants_daemon.py", line 351, in _run_services
pantsd/pantsd.log >>> raise PantsDaemon.RuntimeFailure('service failure for {}, shutting down!'.format(service))
pantsd/pantsd.log >>>
pantsd/pantsd.log >>> Exception message: service failure for <pants.pantsd.service.fs_event_service.FSEventService object at 0x7f5031ac5198>, shutting down!
pantsd/pantsd.log >>>
pantsd/pantsd.log >>>
pantsd/pantsd.log ---
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment