diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c0b31a0 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,32 @@ +FROM python:3.6.15-slim-bullseye +RUN apt update && apt upgrade -y +RUN apt install firefox-esr -y +RUN apt install curl python3-pip -y +ADD . /code +WORKDIR /code + +# Geckodriver Install for Selenium +# RUN bash geckodriver-install.sh +#RUN json=$(curl -s https://api.github.com/repos/mozilla/geckodriver/releases/latest) +#RUN url=$(echo "$json" | jq -r '.assets[].browser_download_url | select(contains("linux64") and endswith("gz"))') +ARG url="https://github.com/mozilla/geckodriver/releases/download/v0.33.0/geckodriver-v0.33.0-linux64.tar.gz" +RUN curl -s -L "$url" | tar -xz +RUN chmod +x geckodriver +RUN mv geckodriver /usr/local/bin +RUN export PATH=$PATH:/usr/local/bin/geckodriver + +RUN pip3 install -r requirements.txt +ENV FLASK_APP=app + +## Set user and group +#ARG user=app +#ARG group=app +#ARG uid=1000 +#ARG gid=1000 +#RUN groupadd -g ${gid} ${group} +#RUN useradd -u ${uid} -g ${group} -s /bin/sh -m ${user} +# +## Switch to user +#USER ${uid}:${gid} + +CMD ["python3","-u","app.py"] \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..e142a52 --- /dev/null +++ b/LICENSE @@ -0,0 +1,625 @@ +GNU GENERAL PUBLIC LICENSE + +Version 3, 29 June 2007 + +Copyright © 2007 Free Software Foundation, Inc. + +Everyone is permitted to copy and distribute verbatim copies of this license +document, but changing it is not allowed. + +Preamble + +The GNU General Public License is a free, copyleft license for software and +other kinds of works. + +The licenses for most software and other practical works are designed to take +away your freedom to share and change the works. By contrast, the GNU General +Public License is intended to guarantee your freedom to share and change all +versions of a program--to make sure it remains free software for all its users. +We, the Free Software Foundation, use the GNU General Public License for most +of our software; it applies also to any other work released this way by its +authors. You can apply it to your programs, too. + +When we speak of free software, we are referring to freedom, not price. Our +General Public Licenses are designed to make sure that you have the freedom +to distribute copies of free software (and charge for them if you wish), that +you receive source code or can get it if you want it, that you can change +the software or use pieces of it in new free programs, and that you know you +can do these things. + +To protect your rights, we need to prevent others from denying you these rights +or asking you to surrender the rights. Therefore, you have certain responsibilities +if you distribute copies of the software, or if you modify it: responsibilities +to respect the freedom of others. + +For example, if you distribute copies of such a program, whether gratis or +for a fee, you must pass on to the recipients the same freedoms that you received. +You must make sure that they, too, receive or can get the source code. And +you must show them these terms so they know their rights. + +Developers that use the GNU GPL protect your rights with two steps: (1) assert +copyright on the software, and (2) offer you this License giving you legal +permission to copy, distribute and/or modify it. + +For the developers' and authors' protection, the GPL clearly explains that +there is no warranty for this free software. For both users' and authors' +sake, the GPL requires that modified versions be marked as changed, so that +their problems will not be attributed erroneously to authors of previous versions. + +Some devices are designed to deny users access to install or run modified +versions of the software inside them, although the manufacturer can do so. +This is fundamentally incompatible with the aim of protecting users' freedom +to change the software. The systematic pattern of such abuse occurs in the +area of products for individuals to use, which is precisely where it is most +unacceptable. Therefore, we have designed this version of the GPL to prohibit +the practice for those products. If such problems arise substantially in other +domains, we stand ready to extend this provision to those domains in future +versions of the GPL, as needed to protect the freedom of users. + +Finally, every program is threatened constantly by software patents. States +should not allow patents to restrict development and use of software on general-purpose +computers, but in those that do, we wish to avoid the special danger that +patents applied to a free program could make it effectively proprietary. To +prevent this, the GPL assures that patents cannot be used to render the program +non-free. + +The precise terms and conditions for copying, distribution and modification +follow. + +TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + +"Copyright" also means copyright-like laws that apply to other kinds of works, +such as semiconductor masks. + +"The Program" refers to any copyrightable work licensed under this License. +Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals +or organizations. + +To "modify" a work means to copy from or adapt all or part of the work in +a fashion requiring copyright permission, other than the making of an exact +copy. The resulting work is called a "modified version" of the earlier work +or a work "based on" the earlier work. + +A "covered work" means either the unmodified Program or a work based on the +Program. + +To "propagate" a work means to do anything with it that, without permission, +would make you directly or secondarily liable for infringement under applicable +copyright law, except executing it on a computer or modifying a private copy. +Propagation includes copying, distribution (with or without modification), +making available to the public, and in some countries other activities as +well. + +To "convey" a work means any kind of propagation that enables other parties +to make or receive copies. Mere interaction with a user through a computer +network, with no transfer of a copy, is not conveying. + +An interactive user interface displays "Appropriate Legal Notices" to the +extent that it includes a convenient and prominently visible feature that +(1) displays an appropriate copyright notice, and (2) tells the user that +there is no warranty for the work (except to the extent that warranties are +provided), that licensees may convey the work under this License, and how +to view a copy of this License. If the interface presents a list of user commands +or options, such as a menu, a prominent item in the list meets this criterion. + + 1. Source Code. + +The "source code" for a work means the preferred form of the work for making +modifications to it. "Object code" means any non-source form of a work. + +A "Standard Interface" means an interface that either is an official standard +defined by a recognized standards body, or, in the case of interfaces specified +for a particular programming language, one that is widely used among developers +working in that language. + +The "System Libraries" of an executable work include anything, other than +the work as a whole, that (a) is included in the normal form of packaging +a Major Component, but which is not part of that Major Component, and (b) +serves only to enable use of the work with that Major Component, or to implement +a Standard Interface for which an implementation is available to the public +in source code form. A "Major Component", in this context, means a major essential +component (kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to produce +the work, or an object code interpreter used to run it. + +The "Corresponding Source" for a work in object code form means all the source +code needed to generate, install, and (for an executable work) run the object +code and to modify the work, including scripts to control those activities. +However, it does not include the work's System Libraries, or general-purpose +tools or generally available free programs which are used unmodified in performing +those activities but which are not part of the work. For example, Corresponding +Source includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically linked +subprograms that the work is specifically designed to require, such as by +intimate data communication or control flow between those subprograms and +other parts of the work. + +The Corresponding Source need not include anything that users can regenerate +automatically from other parts of the Corresponding Source. + + The Corresponding Source for a work in source code form is that same work. + + 2. Basic Permissions. + +All rights granted under this License are granted for the term of copyright +on the Program, and are irrevocable provided the stated conditions are met. +This License explicitly affirms your unlimited permission to run the unmodified +Program. The output from running a covered work is covered by this License +only if the output, given its content, constitutes a covered work. This License +acknowledges your rights of fair use or other equivalent, as provided by copyright +law. + +You may make, run and propagate covered works that you do not convey, without +conditions so long as your license otherwise remains in force. You may convey +covered works to others for the sole purpose of having them make modifications +exclusively for you, or provide you with facilities for running those works, +provided that you comply with the terms of this License in conveying all material +for which you do not control copyright. Those thus making or running the covered +works for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of your copyrighted +material outside their relationship with you. + +Conveying under any other circumstances is permitted solely under the conditions +stated below. Sublicensing is not allowed; section 10 makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + +No covered work shall be deemed part of an effective technological measure +under any applicable law fulfilling obligations under article 11 of the WIPO +copyright treaty adopted on 20 December 1996, or similar laws prohibiting +or restricting circumvention of such measures. + +When you convey a covered work, you waive any legal power to forbid circumvention +of technological measures to the extent such circumvention is effected by +exercising rights under this License with respect to the covered work, and +you disclaim any intention to limit operation or modification of the work +as a means of enforcing, against the work's users, your or third parties' +legal rights to forbid circumvention of technological measures. + + 4. Conveying Verbatim Copies. + +You may convey verbatim copies of the Program's source code as you receive +it, in any medium, provided that you conspicuously and appropriately publish +on each copy an appropriate copyright notice; keep intact all notices stating +that this License and any non-permissive terms added in accord with section +7 apply to the code; keep intact all notices of the absence of any warranty; +and give all recipients a copy of this License along with the Program. + +You may charge any price or no price for each copy that you convey, and you +may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + +You may convey a work based on the Program, or the modifications to produce +it from the Program, in the form of source code under the terms of section +4, provided that you also meet all of these conditions: + +a) The work must carry prominent notices stating that you modified it, and +giving a relevant date. + +b) The work must carry prominent notices stating that it is released under +this License and any conditions added under section 7. This requirement modifies +the requirement in section 4 to "keep intact all notices". + +c) You must license the entire work, as a whole, under this License to anyone +who comes into possession of a copy. This License will therefore apply, along +with any applicable section 7 additional terms, to the whole of the work, +and all its parts, regardless of how they are packaged. This License gives +no permission to license the work in any other way, but it does not invalidate +such permission if you have separately received it. + +d) If the work has interactive user interfaces, each must display Appropriate +Legal Notices; however, if the Program has interactive interfaces that do +not display Appropriate Legal Notices, your work need not make them do so. + +A compilation of a covered work with other separate and independent works, +which are not by their nature extensions of the covered work, and which are +not combined with it such as to form a larger program, in or on a volume of +a storage or distribution medium, is called an "aggregate" if the compilation +and its resulting copyright are not used to limit the access or legal rights +of the compilation's users beyond what the individual works permit. Inclusion +of a covered work in an aggregate does not cause this License to apply to +the other parts of the aggregate. + + 6. Conveying Non-Source Forms. + +You may convey a covered work in object code form under the terms of sections +4 and 5, provided that you also convey the machine-readable Corresponding +Source under the terms of this License, in one of these ways: + +a) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by the Corresponding Source fixed +on a durable physical medium customarily used for software interchange. + +b) Convey the object code in, or embodied in, a physical product (including +a physical distribution medium), accompanied by a written offer, valid for +at least three years and valid for as long as you offer spare parts or customer +support for that product model, to give anyone who possesses the object code +either (1) a copy of the Corresponding Source for all the software in the +product that is covered by this License, on a durable physical medium customarily +used for software interchange, for a price no more than your reasonable cost +of physically performing this conveying of source, or (2) access to copy the +Corresponding Source from a network server at no charge. + +c) Convey individual copies of the object code with a copy of the written +offer to provide the Corresponding Source. This alternative is allowed only +occasionally and noncommercially, and only if you received the object code +with such an offer, in accord with subsection 6b. + +d) Convey the object code by offering access from a designated place (gratis +or for a charge), and offer equivalent access to the Corresponding Source +in the same way through the same place at no further charge. You need not +require recipients to copy the Corresponding Source along with the object +code. If the place to copy the object code is a network server, the Corresponding +Source may be on a different server (operated by you or a third party) that +supports equivalent copying facilities, provided you maintain clear directions +next to the object code saying where to find the Corresponding Source. Regardless +of what server hosts the Corresponding Source, you remain obligated to ensure +that it is available for as long as needed to satisfy these requirements. + +e) Convey the object code using peer-to-peer transmission, provided you inform +other peers where the object code and Corresponding Source of the work are +being offered to the general public at no charge under subsection 6d. + +A separable portion of the object code, whose source code is excluded from +the Corresponding Source as a System Library, need not be included in conveying +the object code work. + +A "User Product" is either (1) a "consumer product", which means any tangible +personal property which is normally used for personal, family, or household +purposes, or (2) anything designed or sold for incorporation into a dwelling. +In determining whether a product is a consumer product, doubtful cases shall +be resolved in favor of coverage. For a particular product received by a particular +user, "normally used" refers to a typical or common use of that class of product, +regardless of the status of the particular user or of the way in which the +particular user actually uses, or expects or is expected to use, the product. +A product is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent the +only significant mode of use of the product. + +"Installation Information" for a User Product means any methods, procedures, +authorization keys, or other information required to install and execute modified +versions of a covered work in that User Product from a modified version of +its Corresponding Source. The information must suffice to ensure that the +continued functioning of the modified object code is in no case prevented +or interfered with solely because modification has been made. + +If you convey an object code work under this section in, or with, or specifically +for use in, a User Product, and the conveying occurs as part of a transaction +in which the right of possession and use of the User Product is transferred +to the recipient in perpetuity or for a fixed term (regardless of how the +transaction is characterized), the Corresponding Source conveyed under this +section must be accompanied by the Installation Information. But this requirement +does not apply if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has been installed +in ROM). + +The requirement to provide Installation Information does not include a requirement +to continue to provide support service, warranty, or updates for a work that +has been modified or installed by the recipient, or for the User Product in +which it has been modified or installed. Access to a network may be denied +when the modification itself materially and adversely affects the operation +of the network or violates the rules and protocols for communication across +the network. + +Corresponding Source conveyed, and Installation Information provided, in accord +with this section must be in a format that is publicly documented (and with +an implementation available to the public in source code form), and must require +no special password or key for unpacking, reading or copying. + + 7. Additional Terms. + +"Additional permissions" are terms that supplement the terms of this License +by making exceptions from one or more of its conditions. Additional permissions +that are applicable to the entire Program shall be treated as though they +were included in this License, to the extent that they are valid under applicable +law. If additional permissions apply only to part of the Program, that part +may be used separately under those permissions, but the entire Program remains +governed by this License without regard to the additional permissions. + +When you convey a copy of a covered work, you may at your option remove any +additional permissions from that copy, or from any part of it. (Additional +permissions may be written to require their own removal in certain cases when +you modify the work.) You may place additional permissions on material, added +by you to a covered work, for which you have or can give appropriate copyright +permission. + +Notwithstanding any other provision of this License, for material you add +to a covered work, you may (if authorized by the copyright holders of that +material) supplement the terms of this License with terms: + +a) Disclaiming warranty or limiting liability differently from the terms of +sections 15 and 16 of this License; or + +b) Requiring preservation of specified reasonable legal notices or author +attributions in that material or in the Appropriate Legal Notices displayed +by works containing it; or + +c) Prohibiting misrepresentation of the origin of that material, or requiring +that modified versions of such material be marked in reasonable ways as different +from the original version; or + +d) Limiting the use for publicity purposes of names of licensors or authors +of the material; or + +e) Declining to grant rights under trademark law for use of some trade names, +trademarks, or service marks; or + +f) Requiring indemnification of licensors and authors of that material by +anyone who conveys the material (or modified versions of it) with contractual +assumptions of liability to the recipient, for any liability that these contractual +assumptions directly impose on those licensors and authors. + +All other non-permissive additional terms are considered "further restrictions" +within the meaning of section 10. If the Program as you received it, or any +part of it, contains a notice stating that it is governed by this License +along with a term that is a further restriction, you may remove that term. +If a license document contains a further restriction but permits relicensing +or conveying under this License, you may add to a covered work material governed +by the terms of that license document, provided that the further restriction +does not survive such relicensing or conveying. + +If you add terms to a covered work in accord with this section, you must place, +in the relevant source files, a statement of the additional terms that apply +to those files, or a notice indicating where to find the applicable terms. + +Additional terms, permissive or non-permissive, may be stated in the form +of a separately written license, or stated as exceptions; the above requirements +apply either way. + + 8. Termination. + +You may not propagate or modify a covered work except as expressly provided +under this License. Any attempt otherwise to propagate or modify it is void, +and will automatically terminate your rights under this License (including +any patent licenses granted under the third paragraph of section 11). + +However, if you cease all violation of this License, then your license from +a particular copyright holder is reinstated (a) provisionally, unless and +until the copyright holder explicitly and finally terminates your license, +and (b) permanently, if the copyright holder fails to notify you of the violation +by some reasonable means prior to 60 days after the cessation. + +Moreover, your license from a particular copyright holder is reinstated permanently +if the copyright holder notifies you of the violation by some reasonable means, +this is the first time you have received notice of violation of this License +(for any work) from that copyright holder, and you cure the violation prior +to 30 days after your receipt of the notice. + +Termination of your rights under this section does not terminate the licenses +of parties who have received copies or rights from you under this License. +If your rights have been terminated and not permanently reinstated, you do +not qualify to receive new licenses for the same material under section 10. + + 9. Acceptance Not Required for Having Copies. + +You are not required to accept this License in order to receive or run a copy +of the Program. Ancillary propagation of a covered work occurring solely as +a consequence of using peer-to-peer transmission to receive a copy likewise +does not require acceptance. However, nothing other than this License grants +you permission to propagate or modify any covered work. These actions infringe +copyright if you do not accept this License. Therefore, by modifying or propagating +a covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + +Each time you convey a covered work, the recipient automatically receives +a license from the original licensors, to run, modify and propagate that work, +subject to this License. You are not responsible for enforcing compliance +by third parties with this License. + +An "entity transaction" is a transaction transferring control of an organization, +or substantially all assets of one, or subdividing an organization, or merging +organizations. If propagation of a covered work results from an entity transaction, +each party to that transaction who receives a copy of the work also receives +whatever licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the Corresponding +Source of the work from the predecessor in interest, if the predecessor has +it or can get it with reasonable efforts. + +You may not impose any further restrictions on the exercise of the rights +granted or affirmed under this License. For example, you may not impose a +license fee, royalty, or other charge for exercise of rights granted under +this License, and you may not initiate litigation (including a cross-claim +or counterclaim in a lawsuit) alleging that any patent claim is infringed +by making, using, selling, offering for sale, or importing the Program or +any portion of it. + + 11. Patents. + +A "contributor" is a copyright holder who authorizes use under this License +of the Program or a work on which the Program is based. The work thus licensed +is called the contributor's "contributor version". + +A contributor's "essential patent claims" are all patent claims owned or controlled +by the contributor, whether already acquired or hereafter acquired, that would +be infringed by some manner, permitted by this License, of making, using, +or selling its contributor version, but do not include claims that would be +infringed only as a consequence of further modification of the contributor +version. For purposes of this definition, "control" includes the right to +grant patent sublicenses in a manner consistent with the requirements of this +License. + +Each contributor grants you a non-exclusive, worldwide, royalty-free patent +license under the contributor's essential patent claims, to make, use, sell, +offer for sale, import and otherwise run, modify and propagate the contents +of its contributor version. + +In the following three paragraphs, a "patent license" is any express agreement +or commitment, however denominated, not to enforce a patent (such as an express +permission to practice a patent or covenant not to sue for patent infringement). +To "grant" such a patent license to a party means to make such an agreement +or commitment not to enforce a patent against the party. + +If you convey a covered work, knowingly relying on a patent license, and the +Corresponding Source of the work is not available for anyone to copy, free +of charge and under the terms of this License, through a publicly available +network server or other readily accessible means, then you must either (1) +cause the Corresponding Source to be so available, or (2) arrange to deprive +yourself of the benefit of the patent license for this particular work, or +(3) arrange, in a manner consistent with the requirements of this License, +to extend the patent license to downstream recipients. "Knowingly relying" +means you have actual knowledge that, but for the patent license, your conveying +the covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that country +that you have reason to believe are valid. + +If, pursuant to or in connection with a single transaction or arrangement, +you convey, or propagate by procuring conveyance of, a covered work, and grant +a patent license to some of the parties receiving the covered work authorizing +them to use, propagate, modify or convey a specific copy of the covered work, +then the patent license you grant is automatically extended to all recipients +of the covered work and works based on it. + +A patent license is "discriminatory" if it does not include within the scope +of its coverage, prohibits the exercise of, or is conditioned on the non-exercise +of one or more of the rights that are specifically granted under this License. +You may not convey a covered work if you are a party to an arrangement with +a third party that is in the business of distributing software, under which +you make payment to the third party based on the extent of your activity of +conveying the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory patent +license (a) in connection with copies of the covered work conveyed by you +(or copies made from those copies), or (b) primarily for and in connection +with specific products or compilations that contain the covered work, unless +you entered into that arrangement, or that patent license was granted, prior +to 28 March 2007. + +Nothing in this License shall be construed as excluding or limiting any implied +license or other defenses to infringement that may otherwise be available +to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + +If conditions are imposed on you (whether by court order, agreement or otherwise) +that contradict the conditions of this License, they do not excuse you from +the conditions of this License. If you cannot convey a covered work so as +to satisfy simultaneously your obligations under this License and any other +pertinent obligations, then as a consequence you may not convey it at all. +For example, if you agree to terms that obligate you to collect a royalty +for further conveying from those to whom you convey the Program, the only +way you could satisfy both those terms and this License would be to refrain +entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + +Notwithstanding any other provision of this License, you have permission to +link or combine any covered work with a work licensed under version 3 of the +GNU Affero General Public License into a single combined work, and to convey +the resulting work. The terms of this License will continue to apply to the +part which is the covered work, but the special requirements of the GNU Affero +General Public License, section 13, concerning interaction through a network +will apply to the combination as such. + + 14. Revised Versions of this License. + +The Free Software Foundation may publish revised and/or new versions of the +GNU General Public License from time to time. Such new versions will be similar +in spirit to the present version, but may differ in detail to address new +problems or concerns. + +Each version is given a distinguishing version number. If the Program specifies +that a certain numbered version of the GNU General Public License "or any +later version" applies to it, you have the option of following the terms and +conditions either of that numbered version or of any later version published +by the Free Software Foundation. If the Program does not specify a version +number of the GNU General Public License, you may choose any version ever +published by the Free Software Foundation. + +If the Program specifies that a proxy can decide which future versions of +the GNU General Public License can be used, that proxy's public statement +of acceptance of a version permanently authorizes you to choose that version +for the Program. + +Later license versions may give you additional or different permissions. However, +no additional obligations are imposed on any author or copyright holder as +a result of your choosing to follow a later version. + + 15. Disclaimer of Warranty. + +THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE +LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER +EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM +PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR +CORRECTION. + + 16. Limitation of Liability. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL +ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM +AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, +INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO +USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED +INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE +PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER +PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + +If the disclaimer of warranty and limitation of liability provided above cannot +be given local legal effect according to their terms, reviewing courts shall +apply local law that most closely approximates an absolute waiver of all civil +liability in connection with the Program, unless a warranty or assumption +of liability accompanies a copy of the Program in return for a fee. END OF +TERMS AND CONDITIONS + +How to Apply These Terms to Your New Programs + +If you develop a new program, and you want it to be of the greatest possible +use to the public, the best way to achieve this is to make it free software +which everyone can redistribute and change under these terms. + +To do so, attach the following notices to the program. It is safest to attach +them to the start of each source file to most effectively state the exclusion +of warranty; and each file should have at least the "copyright" line and a +pointer to where the full notice is found. + + + +Copyright (C) + +This program is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + +If the program does terminal interaction, make it output a short notice like +this when it starts in an interactive mode: + + Copyright (C) + +This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + +This is free software, and you are welcome to redistribute it under certain +conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands might +be different; for a GUI interface, you would use an "about box". + +You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. For +more information on this, and how to apply and follow the GNU GPL, see . + +The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Lesser General Public +License instead of this License. But first, please read . diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..4c73b5f --- /dev/null +++ b/__init__.py @@ -0,0 +1 @@ +from . import const diff --git a/__pycache__/const.cpython-36.pyc b/__pycache__/const.cpython-36.pyc new file mode 100644 index 0000000..48f2c30 Binary files /dev/null and b/__pycache__/const.cpython-36.pyc differ diff --git a/app.py b/app.py new file mode 100644 index 0000000..46990f5 --- /dev/null +++ b/app.py @@ -0,0 +1,32 @@ +from flask import Flask, render_template +from redis import Redis +from utils.processor import process_download + + +app = Flask(__name__) +redis = Redis(host='redis', port=6379) + + +@app.route('/') +def index(): + # redis.incr('hits') + # counter = 'This Compose/Flask demo has been viewed %s time(s).' % redis.get('hits') + + return '

Hello World

Index Page

' + + +@app.route('/api/v1/get/') +def get_artist(path): + """ + Process for the requested Artist + :param path: The Artist to get files for + :return: a status + """ + proc = process_download(path) + params = {'artist': path} + return render_template('base.html', **params) + + +if __name__ == "__main__": + print('Starting App...') + app.run(host="0.0.0.0", debug=True) diff --git a/const.py b/const.py new file mode 100644 index 0000000..dafbe7e --- /dev/null +++ b/const.py @@ -0,0 +1,20 @@ +import os +from redis import Redis +redis = Redis(host='redis', port=6379) +BASE_URL = 'https://www.youtube.com' +QUERY_URL = BASE_URL + '/results?search_query=' + +CWD = os.getcwd() +ROOT_DIR = os.path.dirname(os.path.abspath(__file__)) +MEDIA_FOLDER = os.path.join(ROOT_DIR, 'music') + +ALBUM_CONTAINER_ID = 'shelf-container' +ALBUM_CONTAINER_CLASS = 'ytd-search-refinement-card-renderer' +ALBUM_CONTAINER_ITEMS_XPATH = '/html/body/ytd-app/div[1]/ytd-page-manager/ytd-search/div[1]/ytd-two-column-search-results-renderer/ytd-secondary-search-container-renderer/div/ytd-universal-watch-card-renderer/div[4]/ytd-watch-card-section-sequence-renderer[2]/div/ytd-horizontal-card-list-renderer/div[2]/div[2]' +# ALBUM_CONTAINER_FULL_XPATH = '/html/body/ytd-app/div[1]/ytd-page-manager/ytd-search/div[1]/ytd-two-column-search-results-renderer/ytd-secondary-search-container-renderer/div/ytd-universal-watch-card-renderer/div[4]/ytd-watch-card-section-sequence-renderer[2]/div' +ALBUM_CONTAINER_FULL_XPATH = '/html/body/ytd-app/div[1]/ytd-page-manager/ytd-search/div[1]/ytd-two-column-search-results-renderer/ytd-secondary-search-container-renderer/div/ytd-universal-watch-card-renderer/div[4]/ytd-watch-card-section-sequence-renderer[2]/div/ytd-horizontal-card-list-renderer/div[2]' + +BTN_RIGHT_FULL_XPATH = '/html/body/ytd-app/div[1]/ytd-page-manager/ytd-search/div[1]/ytd-two-column-search-results-renderer/ytd-secondary-search-container-renderer/div/ytd-universal-watch-card-renderer/div[4]/ytd-watch-card-section-sequence-renderer[2]/div/ytd-horizontal-card-list-renderer/div[2]/div[3]/div[2]/ytd-button-renderer/yt-button-shape/button' +click_script = """ +document.evaluate('%s', document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue.click(); +""" % BTN_RIGHT_FULL_XPATH diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e824f6d --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +version: '2' +services: + web: + build: . + command: python3 app.py + ports: + - "80:5000" + volumes: + - .:/code:Z + - ./user:/home/app:Z + depends_on: + - redis + redis: + image: redis diff --git a/geckodriver-install.sh b/geckodriver-install.sh new file mode 100644 index 0000000..f26fe31 --- /dev/null +++ b/geckodriver-install.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +INSTALL_DIR="/usr/local/bin" + +json=$(curl -s https://api.github.com/repos/mozilla/geckodriver/releases/latest) +url=$(echo "$json" | jq -r '.assets[].browser_download_url | select(contains("linux64") and endswith("gz"))') +curl -s -L "$url" | tar -xz +chmod +x geckodriver +sudo mv geckodriver "$INSTALL_DIR" +export PATH=$PATH:$INSTALL_DIR/geckodriver +echo "installed geckodriver binary in $INSTALL_DIR" \ No newline at end of file diff --git a/geckodriver.log b/geckodriver.log new file mode 100644 index 0000000..6f18d6b --- /dev/null +++ b/geckodriver.log @@ -0,0 +1,3145 @@ +1686461844309 geckodriver INFO Listening on 127.0.0.1:54687 +1686461845393 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilejkuokO" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686461845678 Marionette INFO Marionette enabled +1686461845683 Marionette INFO Listening on port 42609 +Read port: 42609 +1686461845790 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilejkuokO/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:37:28Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:37:28Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:37:28Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:37:28Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686461848988 geckodriver INFO Listening on 127.0.0.1:50521 +1686461850025 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilehTIiBF" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686461850373 Marionette INFO Marionette enabled +1686461850378 Marionette INFO Listening on port 44997 +Read port: 44997 +1686461850522 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilehTIiBF/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:37:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:37:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:37:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:37:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462198798 geckodriver INFO Listening on 127.0.0.1:42589 +1686462199834 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileeC1wJn" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686462200131 Marionette INFO Marionette enabled +1686462200137 Marionette INFO Listening on port 42311 +Read port: 42311 +1686462200693 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileeC1wJn/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:43:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:43:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:43:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:43:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462205687 Marionette INFO Stopped listening on port 42311 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686462303336 geckodriver INFO Listening on 127.0.0.1:39763 +1686462304481 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilev9B35v" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686462304774 Marionette INFO Marionette enabled +1686462304780 Marionette INFO Listening on port 45225 +Read port: 45225 +1686462304890 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilev9B35v/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:45:09Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:45:09Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:45:09Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:45:09Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462309493 Marionette INFO Stopped listening on port 45225 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686462376941 geckodriver INFO Listening on 127.0.0.1:56989 +1686462378040 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileTi3aKC" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686462378329 Marionette INFO Marionette enabled +1686462378334 Marionette INFO Listening on port 46815 +Read port: 46815 +1686462378448 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileTi3aKC/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:46:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:46:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:46:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:46:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462381616 Marionette INFO Stopped listening on port 46815 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686462514106 geckodriver INFO Listening on 127.0.0.1:39977 +1686462515208 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileaLZAgE" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686462515520 Marionette INFO Marionette enabled +1686462515524 Marionette INFO Listening on port 42105 +Read port: 42105 +1686462515754 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileaLZAgE/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:48:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:48:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:48:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:48:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462519270 Marionette INFO Stopped listening on port 42105 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686462542086 geckodriver INFO Listening on 127.0.0.1:57127 +1686462542154 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileLMpiqi" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686462542498 Marionette INFO Marionette enabled +1686462542503 Marionette INFO Listening on port 43463 +Read port: 43463 +1686462542646 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileLMpiqi/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:49:05Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:49:05Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:49:07Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:49:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462558332 Marionette INFO Stopped listening on port 43463 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686462748214 geckodriver INFO Listening on 127.0.0.1:34475 +1686462749278 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilej8dZ3H" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686462749561 Marionette INFO Marionette enabled +1686462749567 Marionette INFO Listening on port 36197 +Read port: 36197 +1686462749899 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilej8dZ3H/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:52:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:52:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:52:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:52:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462754955 Marionette INFO Stopped listening on port 36197 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686462808493 geckodriver INFO Listening on 127.0.0.1:50995 +1686462809567 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileYFAnAR" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686462809855 Marionette INFO Marionette enabled +1686462809858 Marionette INFO Listening on port 37555 +Read port: 37555 +1686462809967 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileYFAnAR/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:53:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:53:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:53:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:53:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462813736 Marionette INFO Stopped listening on port 37555 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686462891096 geckodriver INFO Listening on 127.0.0.1:46725 +1686462892189 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileOtEVRR" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686462892534 Marionette INFO Marionette enabled +1686462892539 Marionette INFO Listening on port 42107 +Read port: 42107 +1686462892666 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileOtEVRR/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:54:56Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:54:56Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:54:56Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:54:56Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462906407 Marionette INFO Stopped listening on port 42107 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686462939751 geckodriver INFO Listening on 127.0.0.1:51413 +1686462940857 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileQyBN5L" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686462941225 Marionette INFO Marionette enabled +1686462941229 Marionette INFO Listening on port 44941 +Read port: 44941 +1686462941345 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileQyBN5L/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T05:55:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:55:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:55:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T05:55:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686462975034 Marionette INFO Stopped listening on port 44941 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686463280562 geckodriver INFO Listening on 127.0.0.1:52235 +1686463280605 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileY8udmY" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686463280953 Marionette INFO Marionette enabled +1686463280960 Marionette INFO Listening on port 34843 +Read port: 34843 +1686463281123 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileY8udmY/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:01:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:01:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:01:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:01:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686463284590 Marionette INFO Stopped listening on port 34843 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686463542664 geckodriver INFO Listening on 127.0.0.1:55443 +1686463543772 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileaEy3wD" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686463544111 Marionette INFO Marionette enabled +1686463544116 Marionette INFO Listening on port 41355 +Read port: 41355 +1686463544508 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileaEy3wD/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:05:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:05:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:05:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:05:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686463549138 Marionette INFO Stopped listening on port 41355 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686463572435 geckodriver INFO Listening on 127.0.0.1:36765 +1686463573548 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileRqDZz0" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686463573880 Marionette INFO Marionette enabled +1686463573884 Marionette INFO Listening on port 45791 +Read port: 45791 +1686463574030 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileRqDZz0/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:06:17Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:06:17Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:06:17Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:06:17Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686463577801 Marionette INFO Stopped listening on port 45791 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686463667877 geckodriver INFO Listening on 127.0.0.1:34711 +1686463669012 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile7xWbjL" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686463669357 Marionette INFO Marionette enabled +1686463669362 Marionette INFO Listening on port 40561 +Read port: 40561 +1686463669470 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile7xWbjL/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:07:52Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:07:52Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:07:52Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:07:52Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686463673488 Marionette INFO Stopped listening on port 40561 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686463816108 geckodriver INFO Listening on 127.0.0.1:53713 +1686463817186 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile58uCaw" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686463817539 Marionette INFO Marionette enabled +1686463817546 Marionette INFO Listening on port 44717 +Read port: 44717 +1686463817662 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile58uCaw/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:10:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:10:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:10:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:10:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686463821433 Marionette INFO Stopped listening on port 44717 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686463836719 geckodriver INFO Listening on 127.0.0.1:35085 +1686463837813 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileUMNwKX" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686463838175 Marionette INFO Marionette enabled +1686463838180 Marionette INFO Listening on port 46365 +Read port: 46365 +1686463838300 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileUMNwKX/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:10:41Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:10:41Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:10:41Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:10:41Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686463842309 Marionette INFO Stopped listening on port 46365 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686464130637 geckodriver INFO Listening on 127.0.0.1:60617 +1686464131711 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileRnCaiJ" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686464132087 Marionette INFO Marionette enabled +1686464132096 Marionette INFO Listening on port 40305 +Read port: 40305 +1686464132291 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileRnCaiJ/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:15:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:15:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:15:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:15:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686464136411 Marionette INFO Stopped listening on port 40305 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686464168108 geckodriver INFO Listening on 127.0.0.1:48473 +1686464169148 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilerp810a" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686464169532 Marionette INFO Marionette enabled +1686464169539 Marionette INFO Listening on port 35267 +Read port: 35267 +1686464169664 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilerp810a/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:16:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:16:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:16:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:16:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686464173826 Marionette INFO Stopped listening on port 35267 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686464518225 geckodriver INFO Listening on 127.0.0.1:37173 +1686464519302 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile72Hevh" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686464519651 Marionette INFO Marionette enabled +1686464519655 Marionette INFO Listening on port 37211 +Read port: 37211 +1686464519774 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile72Hevh/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:22:03Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:22:03Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:22:03Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:22:03Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686464524056 Marionette INFO Stopped listening on port 37211 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686464549596 geckodriver INFO Listening on 127.0.0.1:47157 +1686464550719 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilewd7FjN" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686464551031 Marionette INFO Marionette enabled +1686464551039 Marionette INFO Listening on port 39017 +Read port: 39017 +1686464551195 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilewd7FjN/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:22:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:22:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:22:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:22:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686464555232 Marionette INFO Stopped listening on port 39017 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686464556184 geckodriver INFO Listening on 127.0.0.1:37107 +1686464556231 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileRZoJpx" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686464556526 Marionette INFO Marionette enabled +1686464556530 Marionette INFO Listening on port 40559 +Read port: 40559 +1686464556622 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileRZoJpx/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:22:39Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:22:39Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:22:39Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:22:39Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686464559765 Marionette INFO Stopped listening on port 40559 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686464583574 geckodriver INFO Listening on 127.0.0.1:38501 +1686464584717 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofiledfiNmu" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686464585074 Marionette INFO Marionette enabled +1686464585081 Marionette INFO Listening on port 44691 +Read port: 44691 +1686464585200 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiledfiNmu/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:23:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:23:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:23:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:23:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686464589111 Marionette INFO Stopped listening on port 44691 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686464590149 geckodriver INFO Listening on 127.0.0.1:57229 +1686464591176 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile3cY1J9" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686464591422 Marionette INFO Marionette enabled +1686464591426 Marionette INFO Listening on port 37351 +Read port: 37351 +1686464591526 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile3cY1J9/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:23:14Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:23:14Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:23:14Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:23:14Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686464595166 Marionette INFO Stopped listening on port 37351 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686464905338 geckodriver INFO Listening on 127.0.0.1:58845 +1686464905453 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileHYjGY9" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686464905792 Marionette INFO Marionette enabled +1686464905796 Marionette INFO Listening on port 41021 +Read port: 41021 +1686464906174 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileHYjGY9/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:28:30Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:28:30Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:28:30Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:28:30Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686464913658 Marionette INFO Stopped listening on port 41021 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686464914357 geckodriver INFO Listening on 127.0.0.1:39443 +1686464915392 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileASYvAA" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686464915628 Marionette INFO Marionette enabled +1686464915631 Marionette INFO Listening on port 33855 +Read port: 33855 +1686464915762 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileASYvAA/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:28:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:28:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:28:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:28:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686464922228 Marionette INFO Stopped listening on port 33855 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465105455 geckodriver INFO Listening on 127.0.0.1:40885 +1686465105555 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile71kupR" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465105908 Marionette INFO Marionette enabled +1686465105913 Marionette INFO Listening on port 33745 +Read port: 33745 +1686465106056 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile71kupR/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:31:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:31:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:31:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:31:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465112658 Marionette INFO Stopped listening on port 33745 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465113308 geckodriver INFO Listening on 127.0.0.1:44335 +1686465114371 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileY8cW9D" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465114617 Marionette INFO Marionette enabled +1686465114621 Marionette INFO Listening on port 45415 +Read port: 45415 +1686465114724 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileY8cW9D/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:31:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:31:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:31:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:31:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465120602 Marionette INFO Stopped listening on port 45415 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465128369 geckodriver INFO Listening on 127.0.0.1:47393 +1686465129407 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileAVvCED" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465129700 Marionette INFO Marionette enabled +1686465129705 Marionette INFO Listening on port 42885 +Read port: 42885 +1686465129809 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileAVvCED/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:32:12Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:12Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465136218 Marionette INFO Stopped listening on port 42885 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465137005 geckodriver INFO Listening on 127.0.0.1:48643 +1686465138069 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileMzNzMq" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465138313 Marionette INFO Marionette enabled +1686465138317 Marionette INFO Listening on port 34531 +Read port: 34531 +1686465138441 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileMzNzMq/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +1686465139947 geckodriver INFO Listening on 127.0.0.1:53751 +1686465140007 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilejYx3uY" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465140626 Marionette INFO Marionette enabled +1686465140634 Marionette INFO Listening on port 44465 +Read port: 44465 +1686465140861 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilejYx3uY/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:32:22Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:22Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:22Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:22Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:25Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:25Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:25Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:25Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465146598 Marionette INFO Stopped listening on port 34531 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465148646 Marionette INFO Stopped listening on port 44465 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465149833 geckodriver INFO Listening on 127.0.0.1:54603 +1686465150872 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilek6TMre" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465151135 Marionette INFO Marionette enabled +1686465151141 Marionette INFO Listening on port 33691 +Read port: 33691 +1686465151498 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilek6TMre/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:32:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:32:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465159271 Marionette INFO Stopped listening on port 33691 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465234020 geckodriver INFO Listening on 127.0.0.1:38393 +1686465234087 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilekQsN5h" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465234433 Marionette INFO Marionette enabled +1686465234438 Marionette INFO Listening on port 43437 +Read port: 43437 +1686465234565 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilekQsN5h/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:33:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:33:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:33:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:33:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465241237 Marionette INFO Stopped listening on port 43437 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465242052 geckodriver INFO Listening on 127.0.0.1:33871 +1686465243104 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileFZ3Ms9" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465243340 Marionette INFO Marionette enabled +1686465243344 Marionette INFO Listening on port 43959 +Read port: 43959 +1686465243535 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileFZ3Ms9/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:34:06Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:06Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:06Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:06Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465248325 geckodriver INFO Listening on 127.0.0.1:41565 +1686465249383 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile3CPrys" +*** You are running in headless mode. +1686465249540 Marionette INFO Stopped listening on port 43959 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465249881 Marionette INFO Marionette enabled +1686465249891 Marionette INFO Listening on port 38595 +Read port: 38595 +1686465250084 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile3CPrys/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:34:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465256998 Marionette INFO Stopped listening on port 38595 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465257695 geckodriver INFO Listening on 127.0.0.1:47173 +1686465258721 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileEWU31U" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465258965 Marionette INFO Marionette enabled +1686465258969 Marionette INFO Listening on port 32899 +Read port: 32899 +1686465259103 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileEWU31U/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:34:22Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:22Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:22Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:22Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465269155 geckodriver INFO Listening on 127.0.0.1:49561 +1686465269196 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilesP7BPx" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465269519 Marionette INFO Marionette enabled +1686465269524 Marionette INFO Listening on port 39573 +Read port: 39573 +1686465269784 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilesP7BPx/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:34:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465276864 Marionette INFO Stopped listening on port 39573 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465277563 geckodriver INFO Listening on 127.0.0.1:55959 +1686465278624 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileKMwJAq" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465278865 Marionette INFO Marionette enabled +1686465278869 Marionette INFO Listening on port 36901 +Read port: 36901 +1686465278994 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileKMwJAq/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:34:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:34:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465286313 Marionette INFO Stopped listening on port 36901 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465337385 geckodriver INFO Listening on 127.0.0.1:50907 +1686465338462 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileuA4eOP" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465338740 Marionette INFO Marionette enabled +1686465338745 Marionette INFO Listening on port 39177 +Read port: 39177 +1686465338856 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileuA4eOP/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:35:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:35:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:35:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:35:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465347900 Marionette INFO Stopped listening on port 39177 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465348964 geckodriver INFO Listening on 127.0.0.1:55323 +1686465350005 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileTiePQY" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465350397 Marionette INFO Marionette enabled +1686465350403 Marionette INFO Listening on port 40201 +Read port: 40201 +1686465350820 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileTiePQY/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:35:54Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:35:54Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:35:54Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:35:54Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465357487 Marionette INFO Stopped listening on port 40201 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465371403 geckodriver INFO Listening on 127.0.0.1:41461 +1686465371500 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileUOZE2q" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465371855 Marionette INFO Marionette enabled +1686465371859 Marionette INFO Listening on port 37773 +Read port: 37773 +1686465371979 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileUOZE2q/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:36:15Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:36:15Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:36:15Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:36:15Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465378948 Marionette INFO Stopped listening on port 37773 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465379729 geckodriver INFO Listening on 127.0.0.1:55169 +1686465380761 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileMzVbPh" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465381005 Marionette INFO Marionette enabled +1686465381009 Marionette INFO Listening on port 42283 +Read port: 42283 +1686465381117 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileMzVbPh/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:36:23Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:36:23Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:36:23Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:36:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465387230 Marionette INFO Stopped listening on port 42283 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465800179 geckodriver INFO Listening on 127.0.0.1:37621 +1686465801247 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileSAKe2D" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465801606 Marionette INFO Marionette enabled +1686465801610 Marionette INFO Listening on port 33599 +Read port: 33599 +1686465801752 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileSAKe2D/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:43:25Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:43:25Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:43:25Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:43:25Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465808809 Marionette INFO Stopped listening on port 33599 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465809569 geckodriver INFO Listening on 127.0.0.1:41309 +1686465810604 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilekLZwyG" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465810850 Marionette INFO Marionette enabled +1686465810854 Marionette INFO Listening on port 38127 +Read port: 38127 +1686465810968 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilekLZwyG/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:43:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:43:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:43:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:43:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465816875 Marionette INFO Stopped listening on port 38127 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465836666 geckodriver INFO Listening on 127.0.0.1:50121 +1686465836724 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile9AET2o" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465837086 Marionette INFO Marionette enabled +1686465837092 Marionette INFO Listening on port 39087 +Read port: 39087 +1686465837223 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile9AET2o/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:44:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465845321 Marionette INFO Stopped listening on port 39087 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465846087 geckodriver INFO Listening on 127.0.0.1:52661 +1686465847116 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileYyNNZz" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465847361 Marionette INFO Marionette enabled +1686465847365 Marionette INFO Listening on port 44397 +Read port: 44397 +1686465847470 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileYyNNZz/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:44:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465868554 geckodriver INFO Listening on 127.0.0.1:39691 +1686465869653 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilehDeAk7" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465870005 Marionette INFO Marionette enabled +1686465870012 Marionette INFO Listening on port 37235 +Read port: 37235 +1686465870145 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilehDeAk7/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:44:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:33Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465877890 Marionette INFO Stopped listening on port 37235 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465878530 geckodriver INFO Listening on 127.0.0.1:41439 +1686465879596 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilehXhv9C" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465879840 Marionette INFO Marionette enabled +1686465879843 Marionette INFO Listening on port 43339 +Read port: 43339 +1686465879964 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilehXhv9C/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:44:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:44:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465886183 Marionette INFO Stopped listening on port 43339 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465924905 geckodriver INFO Listening on 127.0.0.1:53075 +1686465926023 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilelC4cpL" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465926399 Marionette INFO Marionette enabled +1686465926408 Marionette INFO Listening on port 35419 +Read port: 35419 +1686465926646 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilelC4cpL/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:45:30Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:45:30Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:45:30Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:45:30Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465934038 Marionette INFO Stopped listening on port 35419 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465934835 geckodriver INFO Listening on 127.0.0.1:44763 +1686465934914 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilebo2yON" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465935233 Marionette INFO Marionette enabled +1686465935237 Marionette INFO Listening on port 38855 +Read port: 38855 +1686465935460 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilebo2yON/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:45:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:45:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:45:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:45:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465942097 Marionette INFO Stopped listening on port 38855 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465957592 geckodriver INFO Listening on 127.0.0.1:55909 +1686465957633 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileJdtWEj" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465957967 Marionette INFO Marionette enabled +1686465957974 Marionette INFO Listening on port 37371 +Read port: 37371 +1686465958101 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileJdtWEj/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:46:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:46:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:46:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:46:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465965357 Marionette INFO Stopped listening on port 37371 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686465966159 geckodriver INFO Listening on 127.0.0.1:44113 +1686465967221 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilemNJVzh" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686465967524 Marionette INFO Marionette enabled +1686465967528 Marionette INFO Listening on port 41035 +Read port: 41035 +1686465967807 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilemNJVzh/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:46:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:46:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:46:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:46:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686465974129 Marionette INFO Stopped listening on port 41035 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466115776 geckodriver INFO Listening on 127.0.0.1:50535 +1686466116903 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileIMn2QG" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466117222 Marionette INFO Marionette enabled +1686466117227 Marionette INFO Listening on port 35013 +Read port: 35013 +1686466117474 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileIMn2QG/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:48:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:48:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:48:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:48:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466124289 Marionette INFO Stopped listening on port 35013 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466125003 geckodriver INFO Listening on 127.0.0.1:55363 +1686466126040 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileNmXSuj" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466126285 Marionette INFO Marionette enabled +1686466126289 Marionette INFO Listening on port 40857 +Read port: 40857 +1686466126394 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileNmXSuj/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:48:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:48:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:48:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:48:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466133212 Marionette INFO Stopped listening on port 40857 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466265961 geckodriver INFO Listening on 127.0.0.1:56837 +1686466267016 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileJQ6LVM" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466267320 Marionette INFO Marionette enabled +1686466267325 Marionette INFO Listening on port 39523 +Read port: 39523 +1686466267601 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileJQ6LVM/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:51:11Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:11Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:11Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:11Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466274371 Marionette INFO Stopped listening on port 39523 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466275174 geckodriver INFO Listening on 127.0.0.1:58923 +1686466276224 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileyxogot" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466276476 Marionette INFO Marionette enabled +1686466276481 Marionette INFO Listening on port 42755 +Read port: 42755 +1686466276608 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileyxogot/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:51:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466282772 Marionette INFO Stopped listening on port 42755 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466300111 geckodriver INFO Listening on 127.0.0.1:55169 +1686466301176 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileNXrhTs" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466301470 Marionette INFO Marionette enabled +1686466301475 Marionette INFO Listening on port 40973 +Read port: 40973 +1686466301583 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileNXrhTs/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:51:45Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:45Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:45Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:45Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466308266 Marionette INFO Stopped listening on port 40973 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466308941 geckodriver INFO Listening on 127.0.0.1:41255 +1686466309967 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileoRFcbU" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466310213 Marionette INFO Marionette enabled +1686466310216 Marionette INFO Listening on port 44823 +Read port: 44823 +1686466310338 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileoRFcbU/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:51:53Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:53Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:53Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:51:53Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466316785 Marionette INFO Stopped listening on port 44823 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466354142 geckodriver INFO Listening on 127.0.0.1:44667 +1686466355244 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileaCZxEm" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466355560 Marionette INFO Marionette enabled +1686466355567 Marionette INFO Listening on port 43771 +Read port: 43771 +1686466356286 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileaCZxEm/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:52:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:52:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:52:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:52:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466363879 Marionette INFO Stopped listening on port 43771 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466364585 geckodriver INFO Listening on 127.0.0.1:57589 +1686466365633 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilewIRLvF" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466365879 Marionette INFO Marionette enabled +1686466365882 Marionette INFO Listening on port 40089 +Read port: 40089 +1686466365999 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilewIRLvF/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:52:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:52:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:52:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:52:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466372131 Marionette INFO Stopped listening on port 40089 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466376494 geckodriver INFO Listening on 127.0.0.1:53807 +1686466377584 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileoVelCg" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466377886 Marionette INFO Marionette enabled +1686466377889 Marionette INFO Listening on port 41185 +Read port: 41185 +1686466378169 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileoVelCg/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:53:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466385163 Marionette INFO Stopped listening on port 41185 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466385917 geckodriver INFO Listening on 127.0.0.1:37011 +1686466386943 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilewisUWB" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466387183 Marionette INFO Marionette enabled +1686466387187 Marionette INFO Listening on port 46319 +Read port: 46319 +1686466387427 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilewisUWB/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:53:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466393262 Marionette INFO Stopped listening on port 46319 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466426324 geckodriver INFO Listening on 127.0.0.1:38993 +1686466427360 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilePNviNa" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466427698 Marionette INFO Marionette enabled +1686466427703 Marionette INFO Listening on port 33645 +Read port: 33645 +1686466427839 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilePNviNa/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:53:51Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:51Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:51Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:51Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466434211 Marionette INFO Stopped listening on port 33645 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466434973 geckodriver INFO Listening on 127.0.0.1:53623 +1686466435033 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile9DwQ47" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466435354 Marionette INFO Marionette enabled +1686466435357 Marionette INFO Listening on port 41373 +Read port: 41373 +1686466435566 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile9DwQ47/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:53:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:53:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466442310 Marionette INFO Stopped listening on port 41373 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466669986 geckodriver INFO Listening on 127.0.0.1:42299 +1686466671032 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileLVMdFb" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466671362 Marionette INFO Marionette enabled +1686466671367 Marionette INFO Listening on port 37981 +Read port: 37981 +1686466671595 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileLVMdFb/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:57:55Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:57:55Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:57:55Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:57:55Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466678191 Marionette INFO Stopped listening on port 37981 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686466678992 geckodriver INFO Listening on 127.0.0.1:60121 +1686466680055 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileUjK46Z" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686466680292 Marionette INFO Marionette enabled +1686466680296 Marionette INFO Listening on port 35051 +Read port: 35051 +1686466680434 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileUjK46Z/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T06:58:03Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:58:03Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:58:03Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T06:58:03Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686466686445 Marionette INFO Stopped listening on port 35051 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686493978951 geckodriver INFO Listening on 127.0.0.1:44769 +1686493979995 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile3OkeeT" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686493980348 Marionette INFO Marionette enabled +1686493980354 Marionette INFO Listening on port 34825 +Read port: 34825 +1686493980742 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile3OkeeT/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T14:33:05Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:33:05Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:33:05Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:33:05Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686493988339 Marionette INFO Stopped listening on port 34825 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686493989118 geckodriver INFO Listening on 127.0.0.1:38685 +1686493990184 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilee7MD9S" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686493990421 Marionette INFO Marionette enabled +1686493990425 Marionette INFO Listening on port 44869 +Read port: 44869 +1686493990663 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilee7MD9S/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T14:33:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:33:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:33:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:33:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686493997123 Marionette INFO Stopped listening on port 44869 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686494455280 geckodriver INFO Listening on 127.0.0.1:35399 +1686494456542 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileR0Iy3v" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686494456839 Marionette INFO Marionette enabled +1686494456843 Marionette INFO Listening on port 45693 +Read port: 45693 +1686494457124 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileR0Iy3v/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T14:41:00Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:41:00Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:41:00Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:41:00Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686494464325 Marionette INFO Stopped listening on port 45693 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686494640208 geckodriver INFO Listening on 127.0.0.1:42483 +1686494641332 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilebIrVIa" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686494641616 Marionette INFO Marionette enabled +1686494641620 Marionette INFO Listening on port 37473 +Read port: 37473 +1686494641730 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilebIrVIa/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T14:44:04Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:44:04Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:44:04Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:44:04Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686494648003 Marionette INFO Stopped listening on port 37473 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686494648661 geckodriver INFO Listening on 127.0.0.1:55417 +1686494649697 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilejeFenL" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686494649954 Marionette INFO Marionette enabled +1686494649957 Marionette INFO Listening on port 34389 +Read port: 34389 +1686494650050 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilejeFenL/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T14:44:12Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:44:12Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:44:12Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:44:12Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686494656463 Marionette INFO Stopped listening on port 34389 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686494884437 geckodriver INFO Listening on 127.0.0.1:42361 +1686494885493 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilewXLgzG" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686494885984 Marionette INFO Marionette enabled +1686494885991 Marionette INFO Listening on port 42629 +Read port: 42629 +1686494886395 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilewXLgzG/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T14:48:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:48:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:48:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:48:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686494894183 Marionette INFO Stopped listening on port 42629 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686494895258 geckodriver INFO Listening on 127.0.0.1:44547 +1686494896294 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile2gsxHU" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686494896535 Marionette INFO Marionette enabled +1686494896539 Marionette INFO Listening on port 41155 +Read port: 41155 +1686494896644 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile2gsxHU/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T14:48:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:48:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:48:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:48:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686494903087 Marionette INFO Stopped listening on port 41155 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686495268196 geckodriver INFO Listening on 127.0.0.1:43389 +1686495269284 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilemKeUNq" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686495269565 Marionette INFO Marionette enabled +1686495269570 Marionette INFO Listening on port 36277 +Read port: 36277 +1686495269683 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilemKeUNq/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T14:54:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:54:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:54:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:54:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686495276012 Marionette INFO Stopped listening on port 36277 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686495413169 geckodriver INFO Listening on 127.0.0.1:33345 +1686495414292 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile23Yp1i" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686495414572 Marionette INFO Marionette enabled +1686495414576 Marionette INFO Listening on port 34885 +Read port: 34885 +1686495414698 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile23Yp1i/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T14:56:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:56:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:56:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T14:56:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686495421565 Marionette INFO Stopped listening on port 34885 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686496150044 geckodriver INFO Listening on 127.0.0.1:48667 +1686496151160 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileS1enBs" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686496151464 Marionette INFO Marionette enabled +1686496151469 Marionette INFO Listening on port 36587 +Read port: 36587 +1686496151717 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileS1enBs/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:09:15Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:09:15Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:09:15Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:09:15Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686496158659 Marionette INFO Stopped listening on port 36587 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686496347941 geckodriver INFO Listening on 127.0.0.1:58235 +1686496348047 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofiledRQciC" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686496348370 Marionette INFO Marionette enabled +1686496348374 Marionette INFO Listening on port 40463 +Read port: 40463 +1686496348648 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiledRQciC/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:12:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:12:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:12:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:12:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686496355186 Marionette INFO Stopped listening on port 40463 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686496479875 geckodriver INFO Listening on 127.0.0.1:47069 +1686496480949 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilePdhQhp" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686496481228 Marionette INFO Marionette enabled +1686496481231 Marionette INFO Listening on port 40543 +Read port: 40543 +1686496481343 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilePdhQhp/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:14:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:14:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:14:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:14:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686496487781 Marionette INFO Stopped listening on port 40543 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686496654562 geckodriver INFO Listening on 127.0.0.1:50863 +1686496655683 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofiles2G601" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686496655956 Marionette INFO Marionette enabled +1686496655962 Marionette INFO Listening on port 37809 +Read port: 37809 +1686496656076 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiles2G601/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:17:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:17:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:17:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:17:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686496663860 Marionette INFO Stopped listening on port 37809 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686496863330 geckodriver INFO Listening on 127.0.0.1:43865 +1686496864420 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileqOnI80" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686496864699 Marionette INFO Marionette enabled +1686496864704 Marionette INFO Listening on port 40963 +Read port: 40963 +1686496864820 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileqOnI80/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:21:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:21:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:21:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:21:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686496871705 Marionette INFO Stopped listening on port 40963 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686497017697 geckodriver INFO Listening on 127.0.0.1:56037 +1686497018773 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileZ4Og2y" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686497019068 Marionette INFO Marionette enabled +1686497019073 Marionette INFO Listening on port 41543 +Read port: 41543 +1686497019340 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileZ4Og2y/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:23:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:23:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:23:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:23:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686497026195 Marionette INFO Stopped listening on port 41543 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686497070387 geckodriver INFO Listening on 127.0.0.1:48319 +1686497071487 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile9rbxww" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686497071865 Marionette INFO Marionette enabled +1686497071870 Marionette INFO Listening on port 34469 +Read port: 34469 +1686497072005 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile9rbxww/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:24:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:24:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:24:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:24:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686497079191 Marionette INFO Stopped listening on port 34469 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686497208338 geckodriver INFO Listening on 127.0.0.1:55281 +1686497209418 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileT8zSDv" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686497209702 Marionette INFO Marionette enabled +1686497209706 Marionette INFO Listening on port 42715 +Read port: 42715 +1686497209813 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileT8zSDv/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:26:53Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:26:53Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:26:53Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:26:53Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686497216384 Marionette INFO Stopped listening on port 42715 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686497429137 geckodriver INFO Listening on 127.0.0.1:44021 +1686497430227 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileoVIYPO" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686497430510 Marionette INFO Marionette enabled +1686497430513 Marionette INFO Listening on port 43851 +Read port: 43851 +1686497430616 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileoVIYPO/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:30:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:30:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:30:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:30:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686497439484 Marionette INFO Stopped listening on port 43851 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686497464607 geckodriver INFO Listening on 127.0.0.1:39045 +1686497465716 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileppPxu3" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686497466011 Marionette INFO Marionette enabled +1686497466014 Marionette INFO Listening on port 41053 +Read port: 41053 +1686497466126 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileppPxu3/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:31:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:31:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:31:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:31:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686497473892 Marionette INFO Stopped listening on port 41053 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686497971997 geckodriver INFO Listening on 127.0.0.1:51237 +1686497972061 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile9exKz3" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686497972398 Marionette INFO Marionette enabled +1686497972402 Marionette INFO Listening on port 35723 +Read port: 35723 +1686497972527 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile9exKz3/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:39:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:39:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:39:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:39:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686497980080 Marionette INFO Stopped listening on port 35723 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686498023185 geckodriver INFO Listening on 127.0.0.1:33123 +1686498024258 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile7jOiWU" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686498024541 Marionette INFO Marionette enabled +1686498024545 Marionette INFO Listening on port 37091 +Read port: 37091 +1686498024660 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile7jOiWU/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:40:27Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:40:27Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:40:27Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:40:27Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686498031553 Marionette INFO Stopped listening on port 37091 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686498085170 geckodriver INFO Listening on 127.0.0.1:49015 +1686498086263 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile6xKmNg" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686498086543 Marionette INFO Marionette enabled +1686498086547 Marionette INFO Listening on port 33991 +Read port: 33991 +1686498086922 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile6xKmNg/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:41:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:41:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:41:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:41:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686498094989 Marionette INFO Stopped listening on port 33991 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686498435673 geckodriver INFO Listening on 127.0.0.1:56129 +1686498436752 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilekO7jRv" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686498437034 Marionette INFO Marionette enabled +1686498437039 Marionette INFO Listening on port 40093 +Read port: 40093 +1686498437150 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilekO7jRv/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:47:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:47:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:47:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:47:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686498444183 Marionette INFO Stopped listening on port 40093 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686498817897 geckodriver INFO Listening on 127.0.0.1:42421 +1686498818989 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile6CZhYQ" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686498819263 Marionette INFO Marionette enabled +1686498819269 Marionette INFO Listening on port 34417 +Read port: 34417 +1686498819381 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile6CZhYQ/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:53:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:53:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:53:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:53:42Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686498826298 Marionette INFO Stopped listening on port 34417 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686498858155 geckodriver INFO Listening on 127.0.0.1:53585 +1686498858288 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileqrXUxZ" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686498858611 Marionette INFO Marionette enabled +1686498858616 Marionette INFO Listening on port 45333 +Read port: 45333 +1686498858864 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileqrXUxZ/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:54:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:54:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:54:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:54:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686498865476 Marionette INFO Stopped listening on port 45333 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686498897398 geckodriver INFO Listening on 127.0.0.1:41397 +1686498898463 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile42psJI" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686498898743 Marionette INFO Marionette enabled +1686498898747 Marionette INFO Listening on port 39855 +Read port: 39855 +1686498899084 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile42psJI/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:55:02Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:55:02Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:55:02Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:55:02Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686498907145 Marionette INFO Stopped listening on port 39855 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686498926558 geckodriver INFO Listening on 127.0.0.1:53527 +1686498927648 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileUSqbI5" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686498927922 Marionette INFO Marionette enabled +1686498927927 Marionette INFO Listening on port 46731 +Read port: 46731 +1686498928032 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileUSqbI5/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:55:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:55:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:55:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:55:31Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499025605 geckodriver INFO Listening on 127.0.0.1:58647 +1686499025655 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileDtGkHu" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499025985 Marionette INFO Marionette enabled +1686499025989 Marionette INFO Listening on port 32913 +Read port: 32913 +1686499026126 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileDtGkHu/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:57:09Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:57:09Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:57:09Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:57:09Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499030337 geckodriver INFO Listening on 127.0.0.1:60181 +1686499031378 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileypWEPR" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499031886 Marionette INFO Marionette enabled +1686499031895 Marionette INFO Listening on port 43965 +Read port: 43965 +1686499032133 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileypWEPR/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:57:16Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:57:16Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:57:16Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:57:16Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499078926 geckodriver INFO Listening on 127.0.0.1:50277 +1686499080012 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileMFcNYe" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499080350 Marionette INFO Marionette enabled +1686499080355 Marionette INFO Listening on port 45279 +Read port: 45279 +1686499080473 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileMFcNYe/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +1686499084275 geckodriver INFO Listening on 127.0.0.1:36609 +[2023-06-11T15:58:04Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:04Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:04Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:04Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499085338 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileecpyTN" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499085937 Marionette INFO Marionette enabled +1686499085944 Marionette INFO Listening on port 43433 +Read port: 43433 +1686499086188 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileecpyTN/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +1686499089146 Marionette INFO Stopped listening on port 45279 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +[2023-06-11T15:58:11Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:11Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:11Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:11Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499094465 Marionette INFO Stopped listening on port 43433 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499095307 geckodriver INFO Listening on 127.0.0.1:35799 +1686499095364 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileMofT93" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499095688 Marionette INFO Marionette enabled +1686499095692 Marionette INFO Listening on port 33489 +Read port: 33489 +1686499095913 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileMofT93/search.json.mozlz4", (void 0))) +1686499096835 geckodriver INFO Listening on 127.0.0.1:41719 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +1686499097899 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileG0gpLX" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499098628 Marionette INFO Marionette enabled +1686499098639 Marionette INFO Listening on port 38321 +Read port: 38321 +1686499098804 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileG0gpLX/search.json.mozlz4", (void 0))) +[2023-06-11T15:58:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:20Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +1686499104710 Marionette INFO Stopped listening on port 33489 +[2023-06-11T15:58:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:24Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499109918 Marionette INFO Stopped listening on port 38321 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499111004 geckodriver INFO Listening on 127.0.0.1:49887 +1686499112044 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilealBBkt" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499112328 Marionette INFO Marionette enabled +1686499112332 Marionette INFO Listening on port 39283 +Read port: 39283 +1686499112445 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilealBBkt/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T15:58:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T15:58:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499119862 Marionette INFO Stopped listening on port 39283 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499271384 geckodriver INFO Listening on 127.0.0.1:40445 +1686499272502 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileQFjnB0" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499272799 Marionette INFO Marionette enabled +1686499272803 Marionette INFO Listening on port 34951 +Read port: 34951 +1686499273115 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileQFjnB0/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:01:16Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:16Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:16Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:16Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499280219 Marionette INFO Stopped listening on port 34951 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499281126 geckodriver INFO Listening on 127.0.0.1:52355 +1686499282207 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileR9KjLg" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499282504 Marionette INFO Marionette enabled +1686499282513 Marionette INFO Listening on port 41447 +1686499282526 geckodriver INFO Listening on 127.0.0.1:49535 +Read port: 41447 +1686499282803 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileR9KjLg/search.json.mozlz4", (void 0))) +1686499283583 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileKH1cBw" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499284007 Marionette INFO Marionette enabled +1686499284013 Marionette INFO Listening on port 36367 +Read port: 36367 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +1686499284209 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileKH1cBw/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:01:27Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:27Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:27Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:27Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:29Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:29Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:29Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:29Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499292225 Marionette INFO Stopped listening on port 41447 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499293962 Marionette INFO Stopped listening on port 36367 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499294672 geckodriver INFO Listening on 127.0.0.1:33849 +1686499295738 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileHQaNtU" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499296023 Marionette INFO Marionette enabled +1686499296028 Marionette INFO Listening on port 35885 +Read port: 35885 +1686499296155 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileHQaNtU/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:01:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:01:40Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499305142 Marionette INFO Stopped listening on port 35885 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499433871 geckodriver INFO Listening on 127.0.0.1:57005 +1686499434979 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile8goXpi" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499435281 Marionette INFO Marionette enabled +1686499435286 Marionette INFO Listening on port 44015 +Read port: 44015 +1686499435677 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile8goXpi/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:04:00Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:00Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:00Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:00Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499444819 Marionette INFO Stopped listening on port 44015 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499445703 geckodriver INFO Listening on 127.0.0.1:55961 +1686499446764 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileETifBZ" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499447024 Marionette INFO Marionette enabled +1686499447028 Marionette INFO Listening on port 42521 +Read port: 42521 +1686499447137 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileETifBZ/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:04:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499453714 Marionette INFO Stopped listening on port 42521 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499456582 geckodriver INFO Listening on 127.0.0.1:46459 +1686499457697 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilerh4J3x" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499457991 Marionette INFO Marionette enabled +1686499457997 Marionette INFO Listening on port 43059 +Read port: 43059 +1686499458116 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilerh4J3x/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:04:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:21Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499465440 Marionette INFO Stopped listening on port 43059 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499466428 geckodriver INFO Listening on 127.0.0.1:37559 +1686499467525 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileK5CLdd" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499467861 Marionette INFO Marionette enabled +1686499467865 Marionette INFO Listening on port 39535 +Read port: 39535 +1686499467993 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileK5CLdd/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +1686499469496 geckodriver INFO Listening on 127.0.0.1:36137 +1686499470588 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileCgeSJS" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499471126 Marionette INFO Marionette enabled +1686499471133 Marionette INFO Listening on port 44683 +Read port: 44683 +1686499471292 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileCgeSJS/search.json.mozlz4", (void 0))) +[2023-06-11T16:04:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:32Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:04:35Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499477259 Marionette INFO Stopped listening on port 39535 +[2023-06-11T16:04:37Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:37Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499481067 Marionette INFO Stopped listening on port 44683 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499481861 geckodriver INFO Listening on 127.0.0.1:41729 +1686499481914 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileu25XHd" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499482205 Marionette INFO Marionette enabled +1686499482209 Marionette INFO Listening on port 46009 +Read port: 46009 +1686499482318 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileu25XHd/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:04:45Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:45Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:45Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:04:45Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499489914 Marionette INFO Stopped listening on port 46009 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499562314 geckodriver INFO Listening on 127.0.0.1:37973 +1686499563402 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilemnL97o" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499563690 Marionette INFO Marionette enabled +1686499563694 Marionette INFO Listening on port 46811 +Read port: 46811 +1686499563811 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilemnL97o/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:06:06Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:06Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:06Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:06Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499571047 Marionette INFO Stopped listening on port 46811 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499572413 geckodriver INFO Listening on 127.0.0.1:60229 +1686499572470 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile5PZxnu" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499572796 Marionette INFO Marionette enabled +1686499572801 Marionette INFO Listening on port 42415 +Read port: 42415 +1686499573138 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile5PZxnu/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:06:17Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:17Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:17Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:17Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499581276 Marionette INFO Stopped listening on port 42415 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499590189 geckodriver INFO Listening on 127.0.0.1:56649 +1686499591277 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileanBdGI" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499591572 Marionette INFO Marionette enabled +1686499591576 Marionette INFO Listening on port 34863 +Read port: 34863 +1686499591689 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileanBdGI/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:06:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499599257 Marionette INFO Stopped listening on port 34863 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499600010 geckodriver INFO Listening on 127.0.0.1:34243 +1686499601076 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileRUrmyG" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499601372 Marionette INFO Marionette enabled +1686499601376 Marionette INFO Listening on port 44769 +Read port: 44769 +1686499601489 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileRUrmyG/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:06:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499607868 geckodriver INFO Listening on 127.0.0.1:60177 +1686499608938 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilewIsVQA" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499609197 Marionette INFO Marionette enabled +1686499609201 Marionette INFO Listening on port 44799 +Read port: 44799 +1686499609307 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilewIsVQA/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:06:52Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:52Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:52Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:06:52Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499616044 Marionette INFO Stopped listening on port 44799 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499654776 geckodriver INFO Listening on 127.0.0.1:38983 +1686499654826 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilebma22W" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499655165 Marionette INFO Marionette enabled +1686499655171 Marionette INFO Listening on port 34907 +Read port: 34907 +1686499655295 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilebma22W/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:07:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:07:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:07:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:07:38Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499662850 Marionette INFO Stopped listening on port 34907 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499663603 geckodriver INFO Listening on 127.0.0.1:56157 +1686499664637 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileRBpldr" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499664958 Marionette INFO Marionette enabled +1686499664963 Marionette INFO Listening on port 44943 +Read port: 44943 +1686499665149 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileRBpldr/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:07:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:07:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:07:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:07:48Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499671881 Marionette INFO Stopped listening on port 44943 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499688474 geckodriver INFO Listening on 127.0.0.1:54157 +1686499689570 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileGWFeWO" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499689868 Marionette INFO Marionette enabled +1686499689874 Marionette INFO Listening on port 39535 +Read port: 39535 +1686499690170 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileGWFeWO/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:08:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:08:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:08:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:08:13Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499697082 Marionette INFO Stopped listening on port 39535 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499697780 geckodriver INFO Listening on 127.0.0.1:58159 +1686499698814 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileGmyOBa" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499699076 Marionette INFO Marionette enabled +1686499699080 Marionette INFO Listening on port 32937 +Read port: 32937 +1686499699201 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileGmyOBa/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:08:23Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:08:23Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:08:23Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:08:23Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499706780 Marionette INFO Stopped listening on port 32937 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499754262 geckodriver INFO Listening on 127.0.0.1:54355 +1686499755367 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofiledALH6E" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499755694 Marionette INFO Marionette enabled +1686499755699 Marionette INFO Listening on port 34815 +Read port: 34815 +1686499756057 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofiledALH6E/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:09:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:09:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:09:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:09:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499763199 Marionette INFO Stopped listening on port 34815 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499763931 geckodriver INFO Listening on 127.0.0.1:60379 +1686499764994 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilekw6y5R" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499765252 Marionette INFO Marionette enabled +1686499765256 Marionette INFO Listening on port 39005 +Read port: 39005 +1686499765384 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilekw6y5R/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:09:28Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:09:28Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:09:28Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:09:28Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499772847 Marionette INFO Stopped listening on port 39005 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499805574 geckodriver INFO Listening on 127.0.0.1:39163 +1686499806702 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile9DqSEP" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499807050 Marionette INFO Marionette enabled +1686499807055 Marionette INFO Listening on port 45207 +Read port: 45207 +1686499807181 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile9DqSEP/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:10:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:10:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:10:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:10:10Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499814595 Marionette INFO Stopped listening on port 45207 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499815412 geckodriver INFO Listening on 127.0.0.1:48753 +1686499816477 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilen5oi7M" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499816731 Marionette INFO Marionette enabled +1686499816735 Marionette INFO Listening on port 43009 +Read port: 43009 +1686499816840 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilen5oi7M/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:10:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:10:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:10:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:10:19Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499823924 Marionette INFO Stopped listening on port 43009 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499902946 geckodriver INFO Listening on 127.0.0.1:37631 +1686499904071 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileR5ym07" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499904394 Marionette INFO Marionette enabled +1686499904401 Marionette INFO Listening on port 39635 +Read port: 39635 +1686499904638 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileR5ym07/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:11:47Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:11:47Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:11:47Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:11:47Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499911688 Marionette INFO Stopped listening on port 39635 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686499912509 geckodriver INFO Listening on 127.0.0.1:48297 +1686499913568 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilenaPvlk" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686499913831 Marionette INFO Marionette enabled +1686499913835 Marionette INFO Listening on port 41837 +Read port: 41837 +1686499913947 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilenaPvlk/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:11:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:11:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:11:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:11:57Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686499920916 Marionette INFO Stopped listening on port 41837 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686500023716 geckodriver INFO Listening on 127.0.0.1:33751 +1686500024750 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile2Flvmp" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686500025052 Marionette INFO Marionette enabled +1686500025056 Marionette INFO Listening on port 32957 +Read port: 32957 +1686500025600 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile2Flvmp/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:13:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:13:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:13:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:13:49Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686500033070 Marionette INFO Stopped listening on port 32957 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686500033914 geckodriver INFO Listening on 127.0.0.1:34815 +1686500034984 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileXjfxi1" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686500035249 Marionette INFO Marionette enabled +1686500035254 Marionette INFO Listening on port 45609 +Read port: 45609 +1686500035387 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileXjfxi1/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:13:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:13:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:13:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:13:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686500042531 Marionette INFO Stopped listening on port 45609 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686500206564 geckodriver INFO Listening on 127.0.0.1:47925 +1686500207596 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile1drbLU" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686500207881 Marionette INFO Marionette enabled +1686500207886 Marionette INFO Listening on port 46511 +Read port: 46511 +1686500207999 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile1drbLU/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:16:51Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:16:51Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:16:51Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:16:51Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686500215058 Marionette INFO Stopped listening on port 46511 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686500215972 geckodriver INFO Listening on 127.0.0.1:41329 +1686500217089 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofileTUGkS8" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686500217409 Marionette INFO Marionette enabled +1686500217415 Marionette INFO Listening on port 34133 +Read port: 34133 +1686500217581 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileTUGkS8/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:17:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:17:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:17:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:17:01Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686500225009 Marionette INFO Stopped listening on port 34133 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686500273510 geckodriver INFO Listening on 127.0.0.1:35113 +1686500274600 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilejroXj4" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686500274901 Marionette INFO Marionette enabled +1686500274905 Marionette INFO Listening on port 42963 +Read port: 42963 +1686500275181 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilejroXj4/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:17:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:17:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:17:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:17:58Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686500282725 Marionette INFO Stopped listening on port 42963 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686500439297 geckodriver INFO Listening on 127.0.0.1:47965 +1686500439349 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofile7yrHr0" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686500439795 Marionette INFO Marionette enabled +1686500439800 Marionette INFO Listening on port 40751 +Read port: 40751 +1686500439934 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile7yrHr0/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:20:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:20:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:20:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:20:43Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686500447176 Marionette INFO Stopped listening on port 40751 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686500448434 geckodriver INFO Listening on 127.0.0.1:48993 +1686500449488 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=640,640" "-no-remote" "-profile" "/tmp/rust_mozprofilefCCQya" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686500449769 Marionette INFO Marionette enabled +1686500449773 Marionette INFO Listening on port 35685 +Read port: 35685 +1686500450157 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofilefCCQya/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T16:20:54Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:20:54Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:20:54Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T16:20:54Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686500458372 Marionette INFO Stopped listening on port 35685 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686503011467 geckodriver INFO Listening on 127.0.0.1:46295 +1686503012589 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=1920,1080" "-no-remote" "-profile" "/tmp/rust_mozprofileke2o1U" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686503012893 Marionette INFO Marionette enabled +1686503012898 Marionette INFO Listening on port 45115 +Read port: 45115 +1686503013171 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileke2o1U/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T17:03:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:03:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:03:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:03:36Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686503022474 Marionette INFO Stopped listening on port 45115 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686503103987 geckodriver INFO Listening on 127.0.0.1:58243 +1686503105076 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=1920,1080" "-no-remote" "-profile" "/tmp/rust_mozprofileUSf5Yv" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686503105368 Marionette INFO Marionette enabled +1686503105372 Marionette INFO Listening on port 42389 +Read port: 42389 +1686503105488 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileUSf5Yv/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T17:05:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:05:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:05:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:05:08Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686503111972 Marionette INFO Stopped listening on port 42389 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686503189730 geckodriver INFO Listening on 127.0.0.1:51113 +1686503190776 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=1920,1080" "-no-remote" "-profile" "/tmp/rust_mozprofileenrmFe" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686503191063 Marionette INFO Marionette enabled +1686503191067 Marionette INFO Listening on port 32905 +Read port: 32905 +1686503191186 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileenrmFe/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T17:06:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:06:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:06:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:06:34Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686503198553 Marionette INFO Stopped listening on port 32905 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686503199530 geckodriver INFO Listening on 127.0.0.1:34841 +1686503200591 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "-headless" "--window-size=1920,1080" "-no-remote" "-profile" "/tmp/rust_mozprofile2ggLqz" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686503200835 Marionette INFO Marionette enabled +1686503200838 Marionette INFO Listening on port 41673 +Read port: 41673 +1686503200968 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofile2ggLqz/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T17:06:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:06:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:06:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:06:44Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686503207960 Marionette INFO Stopped listening on port 41673 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686503357202 geckodriver INFO Listening on 127.0.0.1:39327 +1686503357273 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "--window-size=1920,1080" "-no-remote" "-profile" "/tmp/rust_mozprofileCMbKir" +Error: no DISPLAY environment variable specified +1686503374815 geckodriver INFO Listening on 127.0.0.1:33011 +1686503375912 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "--window-size=1920,1080" "-headless" "-no-remote" "-profile" "/tmp/rust_mozprofileOvnoBy" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686503376205 Marionette INFO Marionette enabled +1686503376210 Marionette INFO Listening on port 46433 +Read port: 46433 +1686503376320 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileOvnoBy/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T17:09:39Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:09:39Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:09:39Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:09:39Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686503383996 Marionette INFO Stopped listening on port 46433 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" +1686503385692 geckodriver INFO Listening on 127.0.0.1:59525 +1686503386771 mozrunner::runner INFO Running command: MOZ_CRASHREPORTER="1" MOZ_CRASHREPORTER_NO_REPORT="1" MOZ_CRASHREPORTER_SHUTDOWN="1" MOZ_NO_REMOTE="1" "/usr/bin/firefox" "--marionette" "--window-size=1920,1080" "-headless" "-no-remote" "-profile" "/tmp/rust_mozprofileXgH1H6" +*** You are running in headless mode. +[GFX1-]: glxtest: libpci missing +[GFX1-]: glxtest: Unable to open a connection to the X server +[GFX1-]: glxtest: libEGL missing +[GFX1-]: No GPUs detected via PCI +1686503387031 Marionette INFO Marionette enabled +1686503387036 Marionette INFO Listening on port 33215 +Read port: 33215 +1686503387446 RemoteAgent WARN TLS certificate errors will be ignored for this session +[GFX1-]: RenderCompositorSWGL failed mapping default framebuffer, no dt +console.warn: SearchSettings: "get: No settings file exists, new profile?" (new NotFoundError("Could not open the file at /tmp/rust_mozprofileXgH1H6/search.json.mozlz4", (void 0))) +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +[2023-06-11T17:09:50Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:09:50Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:09:50Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +[2023-06-11T17:09:50Z ERROR mp4parse] Found 2 nul bytes in "\u{0}\u{0}" +1686503393951 Marionette INFO Stopped listening on port 33215 +Missing chrome or resource URL: resource://gre/modules/UpdateListener.jsm +Missing chrome or resource URL: resource://gre/modules/UpdateListener.sys.mjs +console.error: "Error during quit-application-granted: [Exception... \"File error: Not found\" nsresult: \"0x80520012 (NS_ERROR_FILE_NOT_FOUND)\" location: \"JS frame :: resource:///modules/BrowserGlue.jsm :: _onQuitApplicationGranted/tasks< :: line 1996\" data: no]" diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..ac2d3c0 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,9 @@ +bs4 +flask +redis +requests +selenium==3.14.1 +selenium-requests +urllib3==1.26.2 +yt-dlp +wget \ No newline at end of file diff --git a/static/favicon.png b/static/favicon.png new file mode 100644 index 0000000..378364a Binary files /dev/null and b/static/favicon.png differ diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..61e9974 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,2 @@ +

Welcome

+

This page is under construction!

\ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py new file mode 100644 index 0000000..6ed35dd --- /dev/null +++ b/utils/__init__.py @@ -0,0 +1,2 @@ +from . import browser +from . import processor diff --git a/utils/__init__.pyc b/utils/__init__.pyc new file mode 100644 index 0000000..630fcc3 Binary files /dev/null and b/utils/__init__.pyc differ diff --git a/utils/__pycache__/__init__.cpython-310.pyc b/utils/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..ac87615 Binary files /dev/null and b/utils/__pycache__/__init__.cpython-310.pyc differ diff --git a/utils/__pycache__/__init__.cpython-36.pyc b/utils/__pycache__/__init__.cpython-36.pyc new file mode 100644 index 0000000..0416fa8 Binary files /dev/null and b/utils/__pycache__/__init__.cpython-36.pyc differ diff --git a/utils/__pycache__/__init__.cpython-37.pyc b/utils/__pycache__/__init__.cpython-37.pyc new file mode 100644 index 0000000..8a6ae23 Binary files /dev/null and b/utils/__pycache__/__init__.cpython-37.pyc differ diff --git a/utils/__pycache__/__init__.cpython-39.pyc b/utils/__pycache__/__init__.cpython-39.pyc new file mode 100644 index 0000000..848e847 Binary files /dev/null and b/utils/__pycache__/__init__.cpython-39.pyc differ diff --git a/utils/__pycache__/browser.cpython-310.pyc b/utils/__pycache__/browser.cpython-310.pyc new file mode 100644 index 0000000..0485975 Binary files /dev/null and b/utils/__pycache__/browser.cpython-310.pyc differ diff --git a/utils/__pycache__/browser.cpython-36.pyc b/utils/__pycache__/browser.cpython-36.pyc new file mode 100644 index 0000000..3c45d40 Binary files /dev/null and b/utils/__pycache__/browser.cpython-36.pyc differ diff --git a/utils/__pycache__/browser.cpython-37.pyc b/utils/__pycache__/browser.cpython-37.pyc new file mode 100644 index 0000000..38a33a0 Binary files /dev/null and b/utils/__pycache__/browser.cpython-37.pyc differ diff --git a/utils/__pycache__/browser.cpython-39.pyc b/utils/__pycache__/browser.cpython-39.pyc new file mode 100644 index 0000000..8ee2f6c Binary files /dev/null and b/utils/__pycache__/browser.cpython-39.pyc differ diff --git a/utils/__pycache__/processor.cpython-310.pyc b/utils/__pycache__/processor.cpython-310.pyc new file mode 100644 index 0000000..d40d6c6 Binary files /dev/null and b/utils/__pycache__/processor.cpython-310.pyc differ diff --git a/utils/__pycache__/processor.cpython-36.pyc b/utils/__pycache__/processor.cpython-36.pyc new file mode 100644 index 0000000..7293b9b Binary files /dev/null and b/utils/__pycache__/processor.cpython-36.pyc differ diff --git a/utils/__pycache__/processor.cpython-39.pyc b/utils/__pycache__/processor.cpython-39.pyc new file mode 100644 index 0000000..b149044 Binary files /dev/null and b/utils/__pycache__/processor.cpython-39.pyc differ diff --git a/utils/__pycache__/yt_dlp_logger.cpython-36.pyc b/utils/__pycache__/yt_dlp_logger.cpython-36.pyc new file mode 100644 index 0000000..33be994 Binary files /dev/null and b/utils/__pycache__/yt_dlp_logger.cpython-36.pyc differ diff --git a/utils/browser.py b/utils/browser.py new file mode 100644 index 0000000..683ab2f --- /dev/null +++ b/utils/browser.py @@ -0,0 +1,14 @@ +from seleniumrequests import Firefox +from selenium.webdriver.firefox.options import Options + + +def new_browser(headless=True): + options = Options() + options.add_argument("--window-size=1920,1080") + if headless: + options.headless = True + # options.add_argument('--headless') + browser = Firefox(options=options, executable_path='/usr/local/bin/geckodriver') + else: + browser = Firefox(options=options) + return browser diff --git a/utils/processor.py b/utils/processor.py new file mode 100644 index 0000000..5769d2a --- /dev/null +++ b/utils/processor.py @@ -0,0 +1,130 @@ +import bs4 +from selenium.webdriver.support.ui import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC +from selenium.webdriver.common.by import By +from .browser import new_browser +from .yt_dlp_logger import * +from const import * +import time +import wget +import yt_dlp + + +def download_file(url, output): + filename = wget.download(url, out=output) + return filename + + +def process_download(artist): + artist = artist.title() + # Initialize a new browser object to go collect the data we need + browser = new_browser(headless=False) + url = QUERY_URL + artist + browser.maximize_window() + browser.implicitly_wait(1) + response = browser.get(url) + last_height = browser.execute_script("return document.body.scrollHeight") + browser.execute_script("window.scrollTo(0, 500);") + time.sleep(1) + res_value = '' + + try: + # get the financial value when it's populated to the page + value_element = WebDriverWait(browser, 5).until( + EC.presence_of_element_located(locator=(By.XPATH, '//div[@id="shelf-container"]')) + ) + element = browser.find_element(By.XPATH, ALBUM_CONTAINER_ITEMS_XPATH) + if element: + time.sleep(1) + res_value += element.get_attribute('outerHTML') + btn_right = browser.find_element(By.XPATH, BTN_RIGHT_FULL_XPATH) + btn_right_displayed = True + safety_index = 0 + while btn_right_displayed: + # actions = ActionChains(browser) + # actions.move_to_element(btn_right).perform() + safety_index += 1 + time.sleep(1) + browser.execute_script(click_script) + time.sleep(1) + element = browser.find_element(By.XPATH, ALBUM_CONTAINER_ITEMS_XPATH) + res_value += element.get_attribute('outerHTML') + time.sleep(1) + btn_right_displayed = btn_right.is_displayed() + if safety_index > 5: + btn_right_displayed = False + time.sleep(1) + + finally: + # after 5 seconds, give up + browser.quit() + + # Process the gathered HTML data for list of data + html = bs4.BeautifulSoup(res_value, features="html.parser") + albums = html.find_all('a') + albums_data_list = [] + for album in albums: + album_data = {'artist': artist.title()} + if album.has_key('href'): + album_data.update({'link': album['href']}) + + album_image = album.find('img') + if album_image and album_image.has_key('src'): + album_data.update({'cover': album_image['src']}) + + album_title = album.find('div', {'id': 'card-title'}) + if album_title and hasattr(album_title, 'text'): + album_data.update({'album': album_title.text.replace('\n', '')}) + + albums_data_list.append(album_data) + + processed_albums_data_list = [] + processed_album_names = [] + # Eliminate duplicate entries: + for item in albums_data_list: + if item.get('cover') and item.get('album') not in processed_album_names: + processed_albums_data_list.append(item) + processed_album_names.append(item.get('album')) + + #===:= Download the albums ===# + # Create Artist folder/path + artist_path = MEDIA_FOLDER + '/%s' % artist + if not os.path.exists(artist_path): + os.mkdir(artist_path) + + for item in processed_albums_data_list: + print('---') + # Create album folder + album = item.get('album') + album_path = artist_path + '/%s' % album + if not os.path.exists(album_path): + os.mkdir(album_path) + + # Save album cover + if item.get('cover'): + try: + download_file(item.get('cover'), album_path) + except Exception as e: + print("Warning: %s" % e) + + # Download album + print(item) + + ydl_opts = { + 'logger': MyLogger(), + 'progress_hooks': [my_hook], + 'format': 'mp3/bestaudio/best', + 'outtmpl': album_path + '/%(title)s.%(ext)s', + # ℹ️ See help(yt_dlp.postprocessor) for a list of available Postprocessors and their arguments + 'postprocessors': [{ # Extract audio using ffmpeg + 'key': 'FFmpegExtractAudio', + 'preferredcodec': 'mp3', + }] + } + + with yt_dlp.YoutubeDL(ydl_opts) as ydl: + error_code = ydl.download('https://youtube.com' + item.get('link')) + + return res_value + +# diff --git a/utils/processor.pyc b/utils/processor.pyc new file mode 100644 index 0000000..d157bd2 Binary files /dev/null and b/utils/processor.pyc differ diff --git a/utils/yt-links.py b/utils/yt-links.py new file mode 100644 index 0000000..8be558e --- /dev/null +++ b/utils/yt-links.py @@ -0,0 +1,60 @@ +from selenium import webdriver +from selenium.webdriver.chrome.service import Service +from selenium.webdriver.common.by import By +import time +from selenium.webdriver.support.wait import WebDriverWait +from selenium.webdriver.support import expected_conditions as EC + +options = webdriver.ChromeOptions() +# All are optional +options.add_experimental_option("detach", True) +options.add_argument("--disable-extensions") +options.add_argument("--disable-notifications") +options.add_argument("--disable-Advertisement") +options.add_argument("--disable-popup-blocking") +options.add_argument("start-maximized") + +s = Service('./chromedriver') +driver = webdriver.Chrome(service=s, options=options) + +driver.get('https://www.youtube.com/wendoverproductions/videos') +time.sleep(3) + +item = [] +SCROLL_PAUSE_TIME = 1 +last_height = driver.execute_script("return document.documentElement.scrollHeight") + +item_count = 180 + +while item_count > len(item): + driver.execute_script("window.scrollTo(0,document.documentElement.scrollHeight);") + time.sleep(SCROLL_PAUSE_TIME) + new_height = driver.execute_script("return document.documentElement.scrollHeight") + + if new_height == last_height: + break + last_height = new_height + +data = [] +try: + for e in WebDriverWait(driver, 20).until(EC.presence_of_all_elements_located((By.CSS_SELECTOR, 'div#details'))): + title = e.find_element(By.CSS_SELECTOR, 'a#video-title-link').get_attribute('title') + vurl = e.find_element(By.CSS_SELECTOR, 'a#video-title-link').get_attribute('href') + views = e.find_element(By.XPATH, + './/*[@id="metadata"]//span[@class="inline-metadata-item style-scope ytd-video-meta-block"][1]').text + date_time = e.find_element(By.XPATH, + './/*[@id="metadata"]//span[@class="inline-metadata-item style-scope ytd-video-meta-block"][2]').text + data.append({ + 'video_url': vurl, + 'title': title, + 'date_time': date_time, + 'views': views + }) +except: + pass + +item = data +print(item) +print(len(item)) +# df = pd.DataFrame(item) +# print(df) \ No newline at end of file diff --git a/utils/yt_dlp_logger.py b/utils/yt_dlp_logger.py new file mode 100644 index 0000000..32f6485 --- /dev/null +++ b/utils/yt_dlp_logger.py @@ -0,0 +1,23 @@ +class MyLogger: + def debug(self, msg): + # For compatibility with youtube-dl, both debug and info are passed into debug + # You can distinguish them by the prefix '[debug] ' + if msg.startswith('[debug] '): + pass + else: + self.info(msg) + + def info(self, msg): + pass + + def warning(self, msg): + pass + + def error(self, msg): + print(msg) + + +# ℹ️ See "progress_hooks" in help(yt_dlp.YoutubeDL) +def my_hook(d): + if d['status'] == 'finished': + print('Done downloading, now post-processing ...')