Code Monkey home page Code Monkey logo

Comments (1)

LeeTibbert avatar LeeTibbert commented on May 28, 2024

The following code shows first that syslog() is missing. After a fix, it should execute and
display the expected message. This segment is not amenable to becoming a unit-test because
of required manual steps.

Not the prettiest, but useful.

// test_syslog.scala
// 2024-01-07

import scalanative.unsafe._
import scalanative.posix.syslog._
import scalanative.libc.stddef.NULL

/* Notes
 *   1) Execute as a normal un-privileged user
 *   2) To view epected output on macOS (14.n)
 *      a) sudo -i
 *      b) tail /var/log/system.log
 *      c) expected output, mutatis mutandis: 
 *         Jan  7 18:31:36 <hostname> SN Debug[3579]: |Joy to the World|
 * 
 *   2) Use a first argument of sufficient priority that syslog does not
 *      filter it out. Depends upon masks.  LOG_DEBUG probably gets filtered
 *      on a bog standard system.
 */

object TestSyslog {
  def main(args: Array[String]): Unit = {
    printf("Testing syslog() PR - Begin\n\n")

    /* openlog() call is not absolutely necessary, but
     * supplying the first argument makes finding the expected output
     * in system.log or syslog easier.
     *
     * Both openlog() & syslog() return Unit/void so not much help with
     * finding errors or non-execution there.
     */

    openlog(c"SN Debug", LOG_CONS, LOG_USER)

    syslog(LOG_WARNING, c"|%s to the %s|", c"Joy", c"World")    printf("Testing syslog() PR - end\n\n")
  }
}



from scala-native.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.